/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700;
    --primary-glow: #FFE873;
    --secondary-color: #4A90E2;
    --background-color: #121212; 
    --text-color: #FFFFFF;
    --ca-color: #AAAAAA;
    --font-family: 'Poppins', sans-serif;
}

/* IMPORTANT: Ensure HTML and Body use full height */
html, body {
    height: 100%; 
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color); 
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
}

/* CONTAINER: The central card that mimics the phone screen on PC */
.container {
    width: 100%; 
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

/* ------------------------------------------------------------------ */
/* DEFAULT STYLES (LOADED ON MOBILE/PHONES - uses gulya.jpg) */
/* ------------------------------------------------------------------ */
.hero-section {
    width: 100%; 
    min-height: 100vh; 
    padding: 40px 20px;
    
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        url('gulya.jpg'); 
    
    background-size: 
        cover,
        cover; 
        
    background-repeat: no-repeat;
    background-position: 
        center center,
        center center;
        
    background-color: #1a1a1a; 
    border-radius: 0; 
    display: flex;
    flex-direction: column;
    /* KEY FIX: Change to flex-start and rely on spacer */
    justify-content: flex-start; 
    align-items: center;
    position: relative;
    box-shadow: none; 
}

/* KEY SPACER STYLE: Consumes space to push everything below it down */
.spacer {
    flex-grow: 1; 
    min-height: 50px; /* Ensures a minimum gap */
    margin-bottom: auto; /* Pushes the *entire* rest of the content group down */
}

/* ------------------------------------------------------------------ */
/* CSS ANIMATION KEYFRAMES (No change) */
/* ------------------------------------------------------------------ */
@keyframes header-glow {
    0% { color: var(--primary-color); text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    50% { color: var(--primary-glow); text-shadow: 0 0 15px rgba(255, 232, 115, 0.8); }
    100% { color: var(--primary-color); text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
}

/* --- HEADER STYLES --- */
.description-group {
    padding-top: 20px;
    margin-bottom: 0; /* Ensures header is flush with the top of the flex items */
}

.main-title {
    font-size: 3.5rem; 
    font-weight: 900;
    line-height: 1;
    margin: 0 0 5px 0; 
    color: var(--primary-color);
    animation: header-glow 4s ease-in-out infinite;
}

.subtitle-one {
    font-size: 2.2rem; 
    font-weight: 700;
    line-height: 1.1;
    margin: 5px 0 5px 0; 
    animation: header-glow 4s ease-in-out infinite;
    animation-delay: 0.5s; 
}

.subtitle-two {
    font-size: 1.2rem; 
    font-weight: 500;
    line-height: 1.1;
    opacity: 0.8;
    margin-top: 0;
    animation: header-glow 4s ease-in-out infinite;
    animation-delay: 1s; 
}
/* ------------------------- */


/* ------------------------------------------------------------------ */
/* MEDIA QUERY FOR PC/TABLET (Screens wider than 768px) */
/* ------------------------------------------------------------------ */
@media (min-width: 768px) {
    .container {
        max-width: 56.25vh; 
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.8); 
    }
    
    .hero-section {
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('gulya2.jpg'); 
        
        border-radius: 15px; 
        padding: 50px 30px; 
    }
    
    .main-title {
        font-size: 4.5rem; 
        margin-bottom: 5px; 
    }
    .subtitle-one {
        font-size: 2.8rem;
        margin-bottom: 5px; 
    }
    .subtitle-two {
        font-size: 1.5rem;
    }
    
    /* PC/DESKTOP CA MARGINS ADJUSTED */
    .ca-container {
        margin-bottom: 35px; /* Space above BUY NOW button */
    }

    .buy-button {
        font-size: 1.5rem; 
        padding: 20px 40px;
        margin-bottom: 40px; /* Space below BUY NOW button */
    }
    
    .social-links {
        gap: 30px; 
    }
    
    .social-button {
        font-size: 1.2rem;
        padding: 20px 35px;
    }

    .social-button i {
        font-size: 2.5rem;
    }
}


/* CA Container */
.ca-container {
    /* Set margin-top and margin-bottom to 0, controlled by elements around it */
    margin: 0 auto 25px auto; 
    
    background-color: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: fit-content;
    max-width: 90%;
}

.ca-container:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.ca-container p {
    font-size: 1.05rem;
    color: var(--ca-color);
    margin-bottom: 5px;
}

#ca-address {
    font-weight: 700;
    color: var(--text-color);
}

.copy-hint {
    font-size: 0.8rem;
    color: var(--primary-color);
    display: block;
}

/* BUY NOW Button */
.buy-button {
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--background-color);
    font-size: 1.35rem;
    font-weight: 800;
    padding: 18px 35px;
    border-radius: 12px;
    margin-top: 0; 
    margin-bottom: 40px; 
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.buy-button:hover {
    transform: translateY(-5px) scale(1.06);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

/* Social Links Group (Stays at bottom) */
.social-links {
    display: flex; 
    justify-content: center;
    gap: 25px;
    margin-top: 0; 
    padding-bottom: 25px;
}

/* Social Buttons - ICON OVER TEXT LAYOUT */
.social-button {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column; 
    align-items: center;
    transition: background-color 0.2s, transform 0.2s;
}

.social-button i {
    font-size: 2.2rem;
    margin-bottom: 8px; 
}

.telegram-button {
    background-color: #26A5E4;
}

.telegram-button:hover {
    background-color: #1a7fb8;
    transform: translateY(-3px);
}

.x-button {
    background-color: #000000;
    border: 2px solid var(--text-color);
}

.x-button:hover {
    background-color: #1e1e1e;
    transform: translateY(-3px);
}

/* Small screen adjustments */
@media (max-width: 480px) {
    .main-title {
        font-size: 2.8rem;
    }
    .subtitle-one {
        font-size: 1.8rem;
    }
    .subtitle-two {
        font-size: 1rem;
    }
    .buy-button {
        font-size: 1rem;
        padding: 10px 20px;
        margin-bottom: 40px;
    }
    .social-links {
        gap: 15px; 
    }
    .social-button {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    .social-button i {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
}


























