/* AI Smart Gradient Text */
.gradient-text {
    background: linear-gradient(89deg, #4ea0ff 0%, #346bf0 44.5%, #3186ff 99.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.ai-gradient-text {
    background: linear-gradient(89deg, #4ea0ff 0%, #346bf0 25%, #ff9a5b 50%, #ff8e53 75%, #3186ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    color-scheme: light;
    background-color: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #202020;
    background-color: #f2f3f5;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-subtitle {
    font-size: 1.375rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.025em;
    background: #202020;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(32, 32, 32, 0.4);
    background: #202020;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Promotional Header */
.promo-header {
    padding: 120px 0 0;
    background: #ffffff;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.promo-content {
    background: #202020;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.promo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(78, 160, 255, 0.05) 0%, rgba(255, 154, 91, 0.05) 50%, rgba(78, 160, 255, 0.05) 100%);
    animation: shimmer 3s ease-in-out infinite;
    border-radius: 24px;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.promo-text {
    color: white;
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.promo-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #4ea0ff 50%, #ff9a5b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.promo-subtitle {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-weight: 500;
}

.promo-description {
    font-size: 1.125rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.promo-cta {
    display: inline-block;
    background: linear-gradient(135deg, #4ea0ff 0%, #346bf0 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(78, 160, 255, 0.4);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Hide Get the App button temporarily */
.nav-get-app-btn {
    display: none;
}

/* Navbar sign-in button - match btn-primary size */
.nav-sign-in-btn {
    padding: 14px 28px;
    font-size: 1rem;
}

.promo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.promo-cta:hover::before {
    left: 100%;
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(78, 160, 255, 0.6);
    background: linear-gradient(135deg, #346bf0 0%, #4ea0ff 100%);
}

.promo-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.promo-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    width: 100%;
}

@media (max-width: 768px) {
    .promo-visual {
        order: -1; /* Show image first on mobile */
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(224, 227, 231, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo-img {
    height: 42px;
    width: auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-wrapper .language-switcher {
    display: none; /* Hidden on large devices, shown on small */
}

.language-switcher-desktop {
    display: flex; /* Shown on large devices */
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid #e0e3e7;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #202020;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    min-width: 60px;
    justify-content: center;
}

.language-switcher:hover {
    background: #202020;
    color: white;
    border-color: #202020;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 32, 32, 0.3);
}

.language-icon {
    font-size: 1rem;
    line-height: 1;
}

.language-text {
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

/* Hero section on gaming page - accounts for fixed navbar */
.hero-gaming {
    padding-top: 160px; /* Original padding (80px) + navbar height (80px) */
}

/* Hero section on surveys page */
.hero-surveys {
    padding-top: 160px;
    padding-bottom: 80px;
}

.hero-surveys-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-surveys-text {
    text-align: left;
}

.hero-surveys-text .hero-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.hero-surveys-text .hero-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.hero-surveys-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-emoji {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #202020;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9375rem;
    color: #666;
    font-weight: 500;
}

.hero-surveys-signup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    border: 1px solid #e0e3e7;
}

.signup-banner {
    background: #4ea0ff30;
    color: #4ea0ff;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.signup-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 1.5rem;
    text-align: center;
}

.signup-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e3e7;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #202020;
}

.form-input:focus {
    outline: none;
    border-color: #4ea0ff;
    box-shadow: 0 0 0 3px rgba(78, 160, 255, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.btn-signup-continue {
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
    display: block;
}

.signup-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.signup-divider::before,
.signup-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e3e7;
}

.signup-divider span {
    padding: 0 1rem;
    color: #666;
    font-size: 0.875rem;
    background: #ffffff;
}

.signup-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e3e7;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    background: #ffffff;
    color: #202020;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #202020;
}

.btn-google:hover {
    border-color: #4285F4;
    background: #f8f9fa;
}

.btn-apple:hover {
    border-color: #000000;
    background: #f8f9fa;
}

.social-icon {
    flex-shrink: 0;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: #999999;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.25rem;
    color: #999999;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Image Grid Section */
.image-grid {
    padding: 0 0 80px;
    background: #ffffff;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    height: 700px;
}

.grid-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.grid-item.large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.grid-item.medium {
    grid-column: 2;
    grid-row: span 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.image-placeholder h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    margin: 0;
}

.grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.grid-item:hover .image-placeholder::before {
    background: rgba(0, 0, 0, 0.2);
}

/* How to Section */
.how-to-section {
    padding: 80px 0;
    background: #ffffff;
}

.how-to-wrapper {
    background: #f2f3f5;
    border-radius: 24px;
    padding: 4rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.how-to-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.how-to-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.how-to-step:hover .step-image {
    transform: translateY(-4px);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Gift Cards Section */
.gift-cards-section {
    padding: 80px 0;
    background: #ffffff;
}

.gift-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.gift-card {
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e0e3e7;
    box-shadow: 0 4px 16px rgba(78, 160, 255, 0.1);
    padding: 0;
    text-align: center;
    aspect-ratio: 1.6 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.gift-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(78, 160, 255, 0.2);
}

.gift-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.gift-card:hover .gift-card-image {
    transform: scale(1.02);
}

.gift-card.text-only {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    padding: 1rem;
}

.gift-card.text-only h3 {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.gift-card.text-only p {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* Games Grid Section */
.games-grid-section {
    padding: 40px 0;
    background: #f2f3f5;
    overflow: hidden;
}

.games-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #202020;
}

.games-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0; /* Add padding to prevent shadow clipping */
}

.games-disclaimer {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0 20px;
    line-height: 1.5;
}

.games-scroll-container {
    display: flex;
    width: fit-content;
    animation: scroll-horizontal 230s linear infinite;
}

.games-scroll-track {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.game-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 160px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.game-icon {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    align-self: center; /* Center the icon */
}

.game-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #202020;
    margin: 0;
    line-height: 1.3;
    text-align: left;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-price {
    font-size: 1rem;
    font-weight: 600;
    color: #4ea0ff;
    margin: 0;
    line-height: 1.2;
}

.survey-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #4ea0ff 0%, #346bf0 100%);
    border-radius: 12px;
    align-self: center;
}

.survey-category {
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Survey Grid Section */
.survey-grid-section {
    padding: 40px 0;
    background: #f2f3f5;
    overflow: hidden;
}

.survey-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #202020;
}

.survey-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.survey-disclaimer {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0 20px;
    line-height: 1.5;
}

.survey-scroll-container {
    display: flex;
    width: fit-content;
    animation: scroll-horizontal 230s linear infinite;
}

.survey-scroll-track {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
}

.survey-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 180px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.survey-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.survey-minute {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    background: #f2f3f5;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    line-height: 1;
    text-align: center;
}

.survey-payout {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4ea0ff;
    margin: 0.5rem 0;
    line-height: 1.2;
    text-align: center;
}

.survey-topic {
    font-size: 0.875rem;
    font-weight: 300;
    color: #666;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.survey-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    margin-top: auto;
}

.survey-stars .star {
    font-size: 0.9375rem;
    line-height: 1;
    display: inline-block;
}

.survey-stars .star-filled {
    color: #ffa500;
}

.survey-stars .star-inactive {
    opacity: 0.3;
    filter: grayscale(100%);
}

.cta-survey-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(78, 160, 255, 0.1);
    border-radius: 12px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #4ea0ff;
}

.pricing-card.featured {
    border-color: #4ea0ff;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(78, 160, 255, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 1rem;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.pricing-badge.popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4ea0ff 0%, #346bf0 100%);
    box-shadow: 0 4px 15px rgba(78, 160, 255, 0.4);
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

.pricing-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.pricing-features {
    margin: 2rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #444;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4ea0ff 0%, #346bf0 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid #e0e3e7;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #202020;
    background: #ffffff;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.pricing-btn:hover {
    background: #202020;
    color: white;
    border-color: #202020;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 32, 32, 0.3);
}

.pricing-btn.primary {
    background: linear-gradient(135deg, #4ea0ff 0%, #346bf0 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(78, 160, 255, 0.4);
}

.pricing-btn.primary:hover {
    background: linear-gradient(135deg, #346bf0 0%, #4ea0ff 100%);
    box-shadow: 0 12px 35px rgba(78, 160, 255, 0.6);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    color: #202020;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: inherit;
    gap: 1rem;
}

.faq-question > span:first-child {
    flex: 1;
    text-align: left;
}

.faq-question:hover {
    color: #4ea0ff;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #4ea0ff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(89deg, #4ea0ff 0%, #346bf0 44.5%, #3186ff 99.5%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta .section-title {
    color: white;
}

/* Gaming CTA with rotated game icons background */
.cta-gaming {
    position: relative;
}

.cta-gaming-background {
    position: absolute;
    top: -50%;
    left: -10%;
    right: -10%;
    bottom: -50%;
    width: 120%;
    height: 200%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 2rem;
    padding: 2rem;
    transform: rotate(-5deg);
    transform-origin: center;
    opacity: 0.12;
    pointer-events: none;
    overflow: hidden;
    align-content: center;
}

.cta-game-icon {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    opacity: 1;
}

.cta-gaming .container {
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: #202020;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.footer-column h4 {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */

/* Tablet and smaller desktop (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .promo-container {
        padding: 0 24px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.75rem;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .gift-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .grid-container {
        height: 600px;
    }
    
    .how-to-wrapper {
        padding: 3.5rem 2rem;
    }
}

/* Mobile and tablet (768px and below) */
@media (max-width: 768px) {
    .promo-header {
        padding: 100px 0 0;
    }
    
    .promo-container {
        padding: 0 20px;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .promo-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .promo-subtitle {
        font-size: 1.125rem;
    }
    
    .promo-description {
        font-size: 1rem;
    }
    
    .promo-image {
        max-height: 220px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 3.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .gift-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .game-item {
        width: 140px;
        padding: 0.875rem;
    }
    
    .game-icon {
        width: 100px;
        height: 100px;
    }
    
    .survey-icon {
        width: 100px;
        height: 100px;
        font-size: 3.5rem;
    }
    
    .game-name {
        font-size: 0.8125rem;
    }
    
    .games-section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .games-disclaimer {
        font-size: 0.6875rem;
        margin-top: 1rem;
        padding: 0 16px;
    }
    
    .games-grid-section {
        padding: 50px 0;
    }
    
    .games-scroll-container {
        animation-duration: 230s; /* Same speed on all devices */
    }
    
    .survey-grid-section {
        padding: 50px 0;
    }
    
    .survey-section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .survey-scroll-container {
        animation-duration: 230s;
    }
    
    .survey-item {
        width: 160px;
        padding: 1rem;
    }
    
    .survey-payout {
        font-size: 1.5rem;
    }
    
    .survey-topic {
        font-size: 0.8125rem;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-gaming {
        padding-top: 150px; /* Match promo-header approach: 100px navbar + 50px hero padding */
    }
    
    .hero-surveys {
        padding-top: 150px;
        padding-bottom: 50px;
    }
    
    .hero-surveys-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-surveys-text {
        text-align: center;
    }
    
    .hero-surveys-text .hero-title {
        text-align: center;
    }
    
    .hero-surveys-text .hero-description {
        text-align: center;
    }
    
    .hero-surveys-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        align-items: center;
        text-align: center;
    }
    
    .stat-content {
        justify-content: center;
    }
    
    .stat-emoji {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .signup-modal {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .signup-modal-title {
        font-size: 1.5rem;
    }
    
    .signup-banner {
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
    }
    
    .image-grid {
        padding: 0 0 50px;
    }

    .how-to-section {
        padding: 50px 0;
    }
    
    .how-to-wrapper {
        padding: 3rem 2rem;
    }
    
    .how-to-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .gift-cards-section {
        padding: 50px 0;
    }
    
    .pricing {
        padding: 50px 0;
    }

    .cta {
        padding: 50px 0;
    }
    
    .cta-gaming-background {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
        transform: rotate(-3deg);
    }
    
    .cta-game-icon {
        width: 60px;
        height: 60px;
        aspect-ratio: 1 / 1;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 1.25rem;
    }
    
    .grid-item.large {
        grid-column: 1;
        grid-row: auto;
        height: 280px;
    }
    
    .grid-item.medium {
        grid-column: 1;
        grid-row: auto;
        height: 200px;
    }
    
    .image-placeholder h3 {
        font-size: 1.375rem;
        padding: 1.5rem 1rem;
        line-height: 1.3;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .pricing-card {
        padding: 2rem 1.75rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .promo-container {
        padding: 0 16px;
    }
    
    .promo-header {
        padding: 150px 0 0;
    }
    
    .promo-content {
        padding: 1.5rem 1rem;
        border-radius: 16px;
        gap: 1.5rem;
    }
    
    .promo-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .promo-subtitle {
        font-size: 1rem;
    }
    
    .promo-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .promo-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        text-align: center;
    }
    
    .promo-image {
        max-height: 180px;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.625rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }
    
    .btn-primary {
        padding: 10px 18px;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
    
    .hero {
        padding: 35px 0;
    }
    
    .hero-gaming {
        padding-top: 175px; /* Match promo-header approach: 200px navbar + 35px hero padding */
    }
    
    .hero-surveys {
        padding-top: 175px;
        padding-bottom: 40px;
    }
    
    .hero-surveys-content {
        gap: 2rem;
    }
    
    .hero-surveys-stats {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .stat-content {
        justify-content: center;
    }
    
    .stat-emoji {
        font-size: 1.375rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .signup-modal {
        padding: 1.75rem 1.25rem;
    }
    
    .signup-modal-title {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }
    
    .signup-banner {
        font-size: 0.8125rem;
        padding: 0.625rem 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .form-input {
        padding: 12px 16px;
        font-size: 0.9375rem;
    }
    
    .btn-social {
        padding: 12px 16px;
        font-size: 0.9375rem;
    }
    
    .image-grid {
        padding: 0 0 40px;
    }
    
    .how-to-section {
        padding: 40px 0;
    }
    
    .how-to-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .how-to-steps {
        gap: 1.25rem;
        margin-top: 2.5rem;
    }
    
    .step-title {
        font-size: 1.375rem;
    }
    
    .step-description {
        font-size: 0.9375rem;
    }
    
    .step-image {
        margin-bottom: 1.25rem;
        border-radius: 12px;
    }
    
    .gift-cards-section {
        padding: 40px 0;
    }
    
    .pricing {
        padding: 40px 0;
    }
    
    .cta {
        padding: 40px 0;
    }
    
    .cta-gaming-background {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
        gap: 1rem;
        padding: 1rem;
        transform: rotate(-2deg);
    }
    
    .cta-game-icon {
        width: 50px;
        height: 50px;
        aspect-ratio: 1 / 1;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .image-placeholder h3 {
        font-size: 1.125rem;
        padding: 1rem 0.75rem;
        line-height: 1.3;
    }
    
    .grid-item.large {
        grid-column: 1;
        grid-row: auto;
        height: 220px;
    }
    
    .grid-item.medium {
        grid-column: 1;
        grid-row: auto;
        height: 160px;
    }
    
    .gift-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .gift-card {
        padding: 0;
    }
    
    .gift-card.text-only {
        padding: 0.75rem;
    }
    
    .gift-card-image {
        width: 100%;
        height: 100%;
    }
    
    .game-item {
        width: 120px;
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .game-icon {
        width: 80px;
        height: 80px;
    }
    
    .survey-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .cta-survey-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .game-name {
        font-size: 0.75rem;
    }
    
    .games-section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .games-disclaimer {
        font-size: 0.625rem;
        margin-top: 0.75rem;
        padding: 0 16px;
    }
    
    .games-grid-section {
        padding: 40px 0;
    }
    
    .games-scroll-container {
        animation-duration: 230s; /* Same speed on all devices */
    }
    
    .games-scroll-track {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .survey-grid-section {
        padding: 40px 0;
    }
    
    .survey-section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .survey-disclaimer {
        font-size: 0.625rem;
        margin-top: 0.75rem;
        padding: 0 16px;
    }
    
    .survey-scroll-container {
        animation-duration: 230s;
    }
    
    .survey-scroll-track {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .survey-item {
        width: 140px;
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .survey-minute {
        font-size: 0.75rem;
        padding: 0.3125rem 0.625rem;
    }
    
    .survey-payout {
        font-size: 1.375rem;
    }
    
    .survey-topic {
        font-size: 0.8125rem;
    }
    
    .survey-stars {
        font-size: 0.8125rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }
    
    .pricing-card {
        padding: 1.75rem 1.25rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
    
    .pricing-title {
        font-size: 1.375rem;
    }
    
    .pricing-description {
        font-size: 0.9375rem;
    }
    
    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .pricing-badge.popular {
        font-size: 0.6875rem;
        padding: 0.3rem 0.6rem;
    }
    
    .feature-item {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        font-size: 0.6875rem;
        margin-right: 0.625rem;
    }
    
    .pricing-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Navbar responsive adjustments */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-logo .logo-img {
        height: 36px;
    }
    
    .nav-logo-wrapper .language-switcher {
        display: none; /* Keep hidden on medium devices */
    }
    
    .nav-actions {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .nav-actions a,
    .nav-actions button {
        white-space: nowrap;
    }
    
    .nav-actions .btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .nav-actions .promo-cta {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
    
    .nav-sign-in-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .language-switcher {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        min-width: 60px;
    }
    
    .language-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.625rem 0;
    }
    
    .nav-container {
        padding: 0 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .nav-logo-wrapper {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        width: auto;
    }
    
    .nav-logo .logo-img {
        height: 32px;
    }
    
    .nav-logo-wrapper .language-switcher {
        display: flex; /* Show language switcher in logo row on small devices */
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        min-width: 60px;
    }
    
    .language-switcher-desktop {
        display: none; /* Hide desktop language switcher on small devices */
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: stretch;
    }
    
    .nav-actions .btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-actions .promo-cta {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-sign-in-btn {
        padding: 10px 18px;
        font-size: 0.875rem;
    }
    
    .language-text {
        display: inline; /* Keep "DE" text visible */
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for gift cards */
.gift-card {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for interactive elements */
.nav-menu a,
.footer-column a {
    position: relative;
}

.nav-menu a::after,
.footer-column a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.footer-column a:hover::after {
    width: 100%;
}

/* Legal Pages Styling */
.legal-content {
    padding: 120px 0 80px;
    background: #ffffff;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #202020;
}

.legal-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.legal-date {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #202020;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem 0;
    color: #333;
    font-weight: 600;
}

.legal-info {
    line-height: 1.8;
}

.legal-info p {
    margin-bottom: 1rem;
    color: #444;
    font-size: 1rem;
}

.legal-info ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-info li {
    margin-bottom: 0.5rem;
    color: #444;
}

.legal-info a {
    color: #202020;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-info a:hover {
    color: #666;
}

.legal-actions {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

/* Logo link styling */
.nav-logo a {
    text-decoration: none;
    display: block;
}

.nav-logo a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Responsive design for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-info ul {
        margin-left: 1rem;
    }
}

/* Support Page Styling */
.support-content {
    padding: 120px 0 80px;
    background: #ffffff;
}

.support-header {
    text-align: center;
    margin-bottom: 4rem;
}

.support-box {
    background: #f2f3f5;
    border-radius: 24px;
    padding: 4rem 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.support-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.support-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4ea0ff 0%, #346bf0 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(78, 160, 255, 0.3);
}

.step-content {
    flex: 1;
}

.support-step .step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.support-step .step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.support-step .step-title .material-icons {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    vertical-align: middle;
    margin: 0 0.25rem;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    -webkit-font-smoothing: antialiased;
}

.support-email {
    color: #4ea0ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-email:hover {
    color: #346bf0;
    text-decoration: underline;
}

/* Responsive design for support page */
@media (max-width: 768px) {
    .support-content {
        padding: 100px 0 60px;
    }
    
    .support-box {
        padding: 3rem 2rem;
        border-radius: 20px;
    }
    
    .support-steps {
        gap: 2rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .support-step .step-title {
        font-size: 1.25rem;
    }
    
    .support-step .step-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .support-content {
        padding: 100px 0 50px;
    }
    
    .support-box {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .support-steps {
        gap: 1.5rem;
    }
    
    .support-step {
        gap: 1rem;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    
    .support-step .step-title {
        font-size: 1.125rem;
    }
    
    .support-step .step-description {
        font-size: 0.875rem;
    }
    
    .support-step .step-title .material-icons {
        font-size: 1rem;
    }
} 

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2147483646;
    background: #ffffff;
    color: #202020;
    border: 1px solid #e0e3e7;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.cookie-banner.cookie-banner-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
}

.cookie-banner__text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner__link {
    color: #202020;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #e0e3e7;
    background: #ffffff;
    color: #202020;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn--accept {
    background: #202020;
    color: #ffffff;
    border-color: #202020;
}

.cookie-btn--accept:hover {
    box-shadow: 0 8px 25px rgba(32, 32, 32, 0.3);
}

/* Cookie banner responsive adjustments */
@media (max-width: 600px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    
    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 14px;
    }
    
    .cookie-banner__text {
        font-size: 0.875rem;
    }
    
    .cookie-banner__actions {
        justify-content: flex-end;
        gap: 8px;
    }
    
    .cookie-btn {
        padding: 8px 14px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 10px;
    }
    
    .cookie-banner__content {
        padding: 10px 12px;
    }
    
    .cookie-banner__text {
        font-size: 0.8125rem;
    }
    
    .cookie-btn {
        padding: 7px 12px;
        font-size: 0.8125rem;
    }
}

/* Line break handling for responsive design */
.line-break {
    display: inline;
}

@media (max-width: 768px) {
    .line-break {
        display: none;
    }
}