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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2E2E2E;
    background-color: #F9F9F9;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #FFC500;
}

.site-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
}

.login-btn {
    background: #FFC500;
    color: white;
    border: 1px solid #FFC500;
    padding: 8px 12px 10px 12px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: 200ms ease-in-out;
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: 1.42;
    box-shadow: inset 0 -4px 0 1px rgba(0, 0, 0, 0.3);
}

.login-btn:hover {
    padding-top: 8px;
    padding-bottom: 6px;
    margin-top: 4px;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFBF0 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6E6E6E;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-visual {
    margin: 2rem 0;
}

.hero-case {
    width: 200px;
    height: 200px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

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

.cta-btn {
    display: inline-block;
    background: #FFC500;
    color: white;
    text-decoration: none;
    padding: 10px 2rem 12px 2rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: 200ms ease-in-out;
    box-shadow: inset 0 -4px 0 1px rgba(0, 0, 0, 0.3);
    border: 1px solid #FFC500;
    line-height: 1.42;
}

.cta-btn:hover {
    padding-top: 10px;
    padding-bottom: 8px;
    margin-top: 4px;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats {
    background: white;
    padding: 4rem 0;
}

.stats-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2E2E2E;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background-color: rgba(253, 236, 187, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #7b6e47;
    box-shadow: inset 0 -8px 0 0 rgba(136, 116, 54, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 12px;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 -6px 0 0 rgba(136, 116, 54, 0.4);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #FFC500;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: #6E6E6E;
    font-size: 0.9rem;
}

/* Promo Codes Section */
.promo-codes {
    background: #F9F9F9;
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2E2E2E;
}

.codes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.code-card {
    background-color: rgba(253, 236, 187, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #7b6e47;
    box-shadow: inset 0 -8px 0 0 rgba(136, 116, 54, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 12px;
}

.code-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.code-card:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 -6px 0 0 rgba(136, 116, 54, 0.4);
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.code-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-benefit {
    color: #00C48C;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.code-stats {
    color: #6E6E6E;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.use-code-btn {
    background: #FFC500;
    color: white;
    border: 1px solid #FFC500;
    padding: 10px 1rem 12px 1rem;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: 200ms ease-in-out;
    text-transform: uppercase;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.42;
    box-shadow: inset 0 -4px 0 1px rgba(0, 0, 0, 0.3);
}

.use-code-btn:hover {
    padding-top: 10px;
    padding-bottom: 8px;
    margin-top: 4px;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.3);
}

/* SEO Content Section */
.seo-content {
    background: white;
    padding: 4rem 0;
}

.content-article {
    max-width: 800px;
    margin: 0 auto;
}

.content-article h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2E2E2E;
}

.content-article h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #2E2E2E;
}

.content-article p {
    margin-bottom: 1.5rem;
    color: #4A4A4A;
    line-height: 1.7;
}

.content-article ul, .content-article ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-article li {
    margin-bottom: 0.5rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.content-article strong {
    color: #2E2E2E;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2E2E2E;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    color: #B0B0B0;
    font-size: 0.9rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .site-title {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-case {
        width: 250px;
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .codes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header-content {
        padding: 1.5rem 0;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-case {
        width: 300px;
        height: 300px;
    }
    
    .codes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .codes-grid {
        gap: 2rem;
    }
}

