* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Anton', Arial, sans-serif;
    background: #000000;
    color: white;
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex: 1;
    align-items: center;
    min-height: 0;
    padding-bottom: 40px;
}

/* Hero Section (Left Side) */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    min-height: 0;
}

.hero-content {
    text-align: center;
    max-width: 450px;
}

.hero-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.subtitle {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-family: 'Anton', Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: lowercase;
    opacity: 0.8;
}

.hero-text h2 {
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-family: 'Anton', Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: lowercase;
    line-height: 1.2;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #19EE94;
    text-decoration: none;
    font-family: 'Anton', Arial, sans-serif;
    transition: all 0.3s ease;
    padding: 10px;
    border: 2px solid #19EE94;
    border-radius: 8px;
    background: transparent;
    width: 40px;
    height: 40px;
}

.social-link:hover {
    background: #19EE94;
    color: #000000;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Form Section (Right Side) */
.form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    min-height: 0;
}

form {
    width: 100%;
    max-width: 390px;
    background: rgba(21, 28, 39, 0.9);
    padding: 24px;
    border-radius: 15px;
    border: 1px solid rgba(25, 238, 148, 0.2);
}

label {
    color: #19EE94;
    display: block;
    margin-bottom: 5px;
    font-family: 'Anton', Arial, sans-serif;
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(25, 238, 148, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-family: 'Anton', Arial, sans-serif;
    font-size: 0.9em;
    box-sizing: border-box;
}

input[list]::-webkit-calendar-picker-indicator {
    display: none !important;
}

input::placeholder {
    color: #6b7280;
    font-family: 'Anton', Arial, sans-serif;
}

/* Style for datalist options */
datalist {
    font-family: 'Anton', Arial, sans-serif;
}

option {
    padding: 8px;
    background-color: #1a1f2e;
    color: #ffffff;
    font-family: 'Anton', Arial, sans-serif;
}

input:focus, select:focus {
    outline: none;
    border-color: #19EE94;
}

input:hover, select:hover {
    border-color: #19EE94;
    background: #242938;
}

button {
    width: 100%;
    padding: 12px;
    background: #19EE94;
    color: black;
    border: none;
    border-radius: 8px;
    font-family: 'Anton', Arial, sans-serif;
    font-size: 1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

button:hover {
    background: #15cc7f;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

button:disabled {
    background: #4a5568;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(21, 28, 39, 0.9);
    border-top: 1px solid rgba(25, 238, 148, 0.2);
    padding: 8px 0;
    text-align: center;
    z-index: 100;
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Anton', Arial, sans-serif;
    font-size: 0.75em;
    letter-spacing: 0.5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: rgba(21, 28, 39, 0.95);
    margin: 5% auto;
    padding: 20px;
    border: 1px solid rgba(25, 238, 148, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    color: #19EE94;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #ffffff;
}

.modal h2 {
    color: #19EE94;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Anton', Arial, sans-serif;
}

.card-preview {
    margin: 20px 0;
}

.card-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(25, 238, 148, 0.2);
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Anton', Arial, sans-serif;
    font-size: 1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.download-btn {
    background: #19EE94;
    color: black;
}

.download-btn:hover {
    background: #15cc7f;
    transform: translateY(-2px);
}

.copy-btn {
    background: transparent;
    color: #19EE94;
    border: 2px solid #19EE94;
}

.copy-btn:hover {
    background: #19EE94;
    color: black;
    transform: translateY(-2px);
}

/* Additional dark theme elements */
select option {
    background-color: #1a1f2e;
    color: #ffffff;
    font-family: 'Anton', Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px 20px 40px 20px;
    }
    
    .hero-section, .form-section {
        flex: none;
        width: 100%;
        padding: 15px 25px;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .hero-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .subtitle {
        font-size: 1em;
        margin-bottom: 15px;
    }
    
    .hero-text h2 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        padding: 8px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    form {
        max-width: 100%;
        padding: 18px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 15px;
    }
    
    .modal-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-height: 600px) {
    .hero-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .subtitle {
        font-size: 1em;
        margin-bottom: 10px;
    }
    
    .hero-text h2 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    form {
        padding: 15px;
    }
    
    input, select {
        padding: 6px;
        margin-bottom: 8px;
        font-size: 0.8em;
    }
    
    button {
        padding: 10px;
        font-size: 0.9em;
    }
    
    .footer {
        padding: 8px 0;
    }
    
    .footer p {
        font-size: 0.7em;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0f1419;
}

::-webkit-scrollbar-thumb {
    background: #19EE94;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00d084;
} 