/* ========================================
   ThatsGolfBoys - Main Stylesheet
   Color Palette:
   - Primary Sage/Teal: #6B8E7B
   - Light Sage: #8BA995
   - Cream: #F5F0E6
   - Sand: #E8DFD0
   - Dark Green: #4A6B5A
   - Accent Pink: #E85A8F
   - Accent Yellow: #F5D547
   ======================================== */

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6B8E7B;
    --primary-light: #8BA995;
    --primary-dark: #4A6B5A;
    --cream: #F5F0E6;
    --sand: #E8DFD0;
    --sand-dark: #D4C9B8;
    --white: #FFFFFF;
    --text-dark: #2C3E35;
    --text-light: #5A6B60;
    --accent-pink: #E85A8F;
    --accent-yellow: #F5D547;
    
    --font-main: 'Poppins', sans-serif;
    --font-display: 'Pacifico', cursive;
    
    --shadow-sm: 0 2px 8px rgba(74, 107, 90, 0.08);
    --shadow-md: 0 4px 16px rgba(74, 107, 90, 0.12);
    --shadow-lg: 0 8px 32px rgba(74, 107, 90, 0.16);
    --shadow-xl: 0 16px 48px rgba(74, 107, 90, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(107, 142, 123, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 240, 230, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--cream);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-logo .logo-text {
    width: 220px;
    height: auto;
    border-radius: 0;
}

.footer-brand .logo-text {
    width: 200px;
    height: auto;
    border-radius: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--cream);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.cta-btn {
    background: var(--cream);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: var(--radius-md);
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #6B8E7B 0%, #8BA995 30%, #C5D4C0 60%, #F5F0E6 100%);
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--cream), transparent);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-logo {
    max-width: 500px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 350px;
    filter: drop-shadow(var(--shadow-xl));
    animation: float 6s ease-in-out infinite;
}

.phone-video-mockup {
    position: relative;
    max-width: 450px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(var(--shadow-xl));
}

.phone-video-mockup .phone-frame {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.phone-video-mockup .phone-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84%;
    height: 96%;
    object-fit: cover;
    border-radius: 40px;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.875rem;
    opacity: 0.8;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 120px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.85);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(107, 142, 123, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Showcase Section
   ======================================== */
.showcase {
    padding: 120px 0;
    background: var(--sand);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.showcase-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.showcase-text > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.showcase-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.showcase-reverse .showcase-content {
    direction: rtl;
}

.showcase-reverse .showcase-content > * {
    direction: ltr;
}

.showcase-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.showcase-image-stack img {
    width: 100%;
    height: auto;
}

.showcase-img-primary {
    transform: translateY(-20px);
}

.showcase-img-secondary {
    transform: translateY(20px);
}

/* ========================================
   Kakkest Predictor
   ======================================== */
.kakkest-section {
    background: linear-gradient(135deg, var(--sand) 0%, #f5e6d3 100%);
}

.kakkest-section .showcase-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.kakkest-trophy {
    margin-top: 24px;
}

.kakkest-trophy img {
    max-width: 320px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.kakkest-widget {
    background: url('../images/background1.png') center center / cover no-repeat;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    max-width: 380px;
    margin: 0 auto;
    position: relative;
}

.kakkest-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.kakkest-subheader {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2a2a2a;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.kakkest-instruction {
    font-size: 0.875rem;
    color: #4a4a4a;
    margin-bottom: 24px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.beer-glass-container {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.beer-glass {
    width: 100px;
    height: 160px;
    background: linear-gradient(90deg, rgba(180,180,180,0.3) 0%, rgba(220,220,220,0.4) 20%, rgba(180,180,180,0.3) 100%);
    border: 4px solid #888;
    border-radius: 8px 8px 12px 12px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.3);
}

.beer-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: linear-gradient(180deg, #f5c842 0%, #daa520 50%, #c8962a 100%);
    transition: height 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 0 6px 6px;
}

.beer-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.15) 30%, 
        rgba(255,255,255,0.25) 50%, 
        rgba(255,255,255,0.15) 70%, 
        transparent 100%);
    animation: beerShimmer 3s ease-in-out infinite;
}

@keyframes beerShimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.beer-foam {
    position: absolute;
    top: 0;
    left: -4px;
    right: -4px;
    height: 0px;
    background: linear-gradient(180deg, #fffef5 0%, #f5f0e0 50%, #e8dcc0 100%);
    border-radius: 8px 8px 50% 50%;
    transition: height 0.8s ease-out 0.8s, top 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.beer-foam.active {
    opacity: 1;
}

.beer-foam::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10%;
    right: 10%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.8) 0%, transparent 70%);
    border-radius: 50%;
}

.glass-highlight {
    position: absolute;
    top: 10px;
    left: 8px;
    width: 15px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 10px;
    pointer-events: none;
}

.beer-handle {
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 70px;
    border: 4px solid #888;
    border-left: none;
    border-radius: 0 20px 20px 0;
    background: transparent;
}

.player-result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.player-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2a2a2a;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.player-odds {
    font-size: 1.5rem;
    font-weight: 800;
    color: #daa520;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.player-avatars {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.avatar-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.avatar-btn:hover {
    transform: scale(1.1);
    border-color: #daa520;
}

.avatar-btn.active {
    border-color: #daa520;
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.3);
}

.avatar-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.player-stats {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    border-top: 1px solid rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.7);
    border-radius: 0 0 16px 16px;
    margin: 0 -24px -24px -24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #c9302c;
}

/* ========================================
   App Preview Section
   ======================================== */
.app-preview {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.app-preview-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.app-preview-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 107, 90, 0.92), rgba(107, 142, 123, 0.88));
}

.app-screens {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.screen-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.screen-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.screen-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.screen-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.screen-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Download Section
   ======================================== */
.download {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

.download-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.download-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.download-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-dark);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.store-badge:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.store-badge div {
    text-align: left;
}

.store-badge span {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
}

.store-badge strong {
    font-size: 1.1rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-phone {
        order: 0;
    }
    
    .hero-logo {
        display: none;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .phone-mockup {
        max-width: 260px;
    }
    
    .phone-video-mockup {
        max-width: 260px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .showcase-image {
        order: -1;
    }

    .showcase-reverse .showcase-content {
        direction: ltr;
    }

    .kakkest-section .showcase-content {
        grid-template-columns: 1fr;
    }

    .kakkest-trophy img {
        max-width: 280px;
    }

    .kakkest-widget {
        max-width: 340px;
    }

    .showcase-image-stack {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 320px;
        margin: 0 auto;
    }

    .showcase-img-primary,
    .showcase-img-secondary {
        transform: none;
    }
    
    .app-screens {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(107, 142, 123, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .nav-link.cta-btn {
        background: var(--cream);
        color: var(--primary-dark);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .hero-container {
        padding: 40px 20px;
        gap: 20px;
    }
    
    .phone-mockup {
        max-width: 220px;
    }
    
    .phone-video-mockup {
        max-width: 220px;
    }
    
    .phone-video-mockup .phone-video {
        border-radius: 25px;
        height: 95%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .section-header h2,
    .showcase-text h2,
    .download-content h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-screens {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .kakkest-widget {
        padding: 20px;
        max-width: 100%;
    }

    .kakkest-trophy img {
        max-width: 240px;
    }

    .beer-glass {
        width: 80px;
        height: 130px;
    }

    .glass-highlight {
        height: 60px;
        width: 12px;
    }

    .beer-handle {
        width: 20px;
        height: 55px;
        right: -22px;
    }

    .avatar-btn {
        width: 44px;
        height: 44px;
    }

    .avatar-icon {
        font-size: 1.25rem;
    }

    .player-stats {
        margin: 0 -20px -20px -20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-badge {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
}
