/*
Theme Name: blitzplaynow.com
Author: TrueWhitePages
Author URI: https://truewhitepages.com
Version: 4.1.0
*/
/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #FFB800;
    --accent-color: #00D9FF;
    --dark-color: #1A1A2E;
    --light-color: #FFFFFF;
    --text-color: #333333;
    --text-light: #666666;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
    --gradient-2: linear-gradient(135deg, #FFB800 0%, #00D9FF 100%);
    --gradient-3: linear-gradient(135deg, #00D9FF 0%, #4CAF50 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: #FFF8F0;
}

html {
    scroll-behavior: smooth;
}

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

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo h1 span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-play-nav):not(.btn-login):hover {
    color: var(--primary-color);
}

.nav-links a:not(.btn-play-nav):not(.btn-login)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-links a:not(.btn-play-nav):not(.btn-login):hover::after {
    width: 100%;
}

.btn-login {
    background: transparent;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.btn-play-nav {
    background: var(--gradient-1);
    color: var(--light-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.btn-play-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0.15;
}

.fruit-float {
    position: absolute;
    font-size: 60px;
    animation: float 20s infinite ease-in-out;
}

.fruit-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.fruit-2 {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.fruit-3 {
    top: 20%;
    right: 20%;
    animation-delay: 4s;
}

.fruit-4 {
    top: 70%;
    right: 10%;
    animation-delay: 6s;
}

.fruit-5 {
    top: 40%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--light-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.hero-features {
    display: flex;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item .icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.feature-item p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot-machine-preview {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: floatSlot 6s infinite ease-in-out;
}

.slot-machine-preview img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.glow-effect {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-1);
    border-radius: 20px;
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s infinite;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--light-color);
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 100px 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: -1;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 184, 0, 0.1);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--dark-color);
}

.section-title .highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-description strong {
    color: var(--text-color);
    font-weight: 600;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #F0F8FF 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: var(--transition);
}

.benefit-card.card-1::before {
    background: var(--gradient-1);
}

.benefit-card.card-2::before {
    background: var(--gradient-2);
}

.benefit-card.card-3::before {
    background: var(--gradient-3);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-card.card-1 .benefit-icon {
    background: rgba(255, 107, 53, 0.1);
}

.benefit-card.card-2 .benefit-icon {
    background: rgba(255, 184, 0, 0.1);
}

.benefit-card.card-3 .benefit-icon {
    background: rgba(0, 217, 255, 0.1);
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== CTA SECTION ==================== */
.cta {
    padding: 80px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '🍊';
    position: absolute;
    font-size: 200px;
    opacity: 0.1;
    top: -50px;
    left: -50px;
    transform: rotate(-15deg);
}

.cta::after {
    content: '🍒';
    position: absolute;
    font-size: 180px;
    opacity: 0.1;
    bottom: -40px;
    right: -40px;
    transform: rotate(15deg);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    background: var(--light-color);
    color: var(--primary-color);
    font-size: 18px;
    padding: 18px 40px;
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==================== DISCLAIMER SECTION ==================== */
.disclaimer {
    padding: 60px 0;
    background: #FFF8F0;
    border-top: 3px solid var(--primary-color);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.disclaimer-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    text-align: justify;
}

.disclaimer-content strong {
    color: var(--text-color);
    font-weight: 600;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 100px 0;
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 50%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-form {
    background: #FFF8F0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form button {
    width: 100%;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.responsibility-badge {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.responsibility-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: var(--light-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
}

.app-downloads {
    margin-top: 15px;
}

.download-badges {
    max-width: 300px;
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.download-badges:hover {
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== CONTENT PAGES STYLES ==================== */
.content-page {
    padding: 120px 0 80px;
    background: var(--light-color);
    min-height: 100vh;
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
    border-radius: 20px;
}

.content-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.content-header p {
    font-size: 20px;
    color: var(--text-light);
}

.content-body {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.content-body h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 40px 0 20px;
}

.content-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin: 30px 0 15px;
}

.content-body p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.content-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-body ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.content-body strong {
    color: var(--text-color);
    font-weight: 600;
}

/* ==================== AUTH PAGES ==================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 100%);
    padding: 100px 20px 50px;
}

.auth-container {
    max-width: 450px;
    width: 100%;
    background: var(--light-color);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.auth-header p {
    font-size: 16px;
    color: var(--text-light);
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.auth-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.auth-form button {
    width: 100%;
    margin-top: 10px;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
}

.auth-footer p {
    font-size: 14px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.success-message {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.success-message.show {
    display: block;
}

/* ==================== CONTACT PAGE SPECIFIC ==================== */
.contact-page {
    padding: 120px 0 80px;
    background: var(--light-color);
    min-height: 100vh;
}

.contact-page .content-header {
    margin-bottom: 50px;
}

.contact-page .contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 0;
}

.contact-page .contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-page .info-card {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE5CC 50%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-page .info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-page .info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-page .info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-page .info-card p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-page .contact-form {
    background: #FFF8F0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-page .form-group {
    margin-bottom: 25px;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--light-color);
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-page .contact-form button {
    width: 100%;
}

.contact-page .success-message {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.contact-page .success-message.show {
    display: block;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content,
    .contact-page .contact-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

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

    .mobile-menu {
        display: flex;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-body {
        padding: 30px 20px;
    }

    .content-header h1 {
        font-size: 36px;
    }

    .auth-container {
        padding: 40px 30px;
    }

    .contact-content,
    .contact-page .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .content-header h1 {
        font-size: 28px;
    }

    .content-body h2 {
        font-size: 24px;
    }

    .contact-form,
    .contact-page .contact-form {
        padding: 30px 20px;
    }
}
