/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background-color: #0a0e17;
    background-color: var(--bg-primary, #0a0e17);
    color: #ffffff;
    color: var(--text-primary, #ffffff);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    color: var(--text-primary, #ffffff);
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #00FFA8, #00C0FF);
    background: var(--primary-gradient, linear-gradient(90deg, #00FFA8, #00C0FF));
    color: #000000;
    color: var(--bg-primary, #000000);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 192, 255, 0.3);
    box-shadow: 0 10px 20px rgba(var(--secondary-color-rgb, 0, 192, 255), 0.3);
}

/* Form Message Styles */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.form-message.error {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    border: 1px solid #ff6b7a;
}

.form-message.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: 1px solid #66bb6a;
}

.form-message.warning {
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: white;
    border: 1px solid #ffb74d;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch device optimizations */
.touch-device .btn-primary,
.touch-device .btn-secondary,
.touch-device .faq-question {
    min-height: 48px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.touch-device input,
.touch-device select,
.touch-device textarea {
    font-size: 16px;
    /* Prevents zoom on iOS */
}

/* Hover effects only for non-touch devices */
@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 192, 255, 0.3);
        box-shadow: 0 10px 20px rgba(var(--secondary-color-rgb, 0, 192, 255), 0.3);
    }
}

/* Remove hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover {
        transform: none;
        box-shadow: none;
    }
}