* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    min-height: 100vh;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 128px;
}
/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 225, 225, 0.08);
    transition: all 0.3s ease;
}

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

.logo-image {
    user-select: none;
    pointer-events: none;
}



/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 14px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: fit-content;
}

.btn::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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #FBB117;
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: #FBB117;
}

.btn-primary:active {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: #f8f9fa;
}

.btn-secondary:active {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}



@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    }
}

/* Main Content */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Hero Section */
.hero {
    text-align: center;
}

.beer-icons {
    position: relative;
    width: 100%;
    height: 138px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beer-icon {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;

}

.beer-icon-1 {
    left: 50%;
    top: 20px;
    transform: translateX(-145px) ;
    animation-delay: 0s;
    --translate-x: -145px;
}

.beer-icon-1 img {
    transform: scaleX(-1) rotate(35deg);
    height: 115px;
    width: 115px;
}

.beer-icon-2 {
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 0.5s;
    z-index: 2;
    --rotation: 0deg;
    --translate-x: -50%;
}

.beer-icon-2 img {
    height: 132px;
    width: 132px;
}

.beer-icon-3 {
    top: 20px;
    left: 50%;
    transform: translateX(30px);
    animation-delay: 1s;
    --translate-x: 30px;
}

.beer-icon-3 img {
    transform: scaleX(1) rotate(35deg);
    height: 115px;
    width: 115px;
}






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



.hero-title {
    font-size: clamp(2.5rem, 5vw, 2.625rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.title-line {
    display: block;
}

.text-white {
    color: #ffffff;
}

.text-accent {
    color: #FBB117;
    position: relative;

}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #FBB117, #FFA500);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-grow 0.7s cubic-bezier(0.4,0,0.2,1) 2s forwards;
}

@keyframes underline-grow {
    0% {
        transform: scaleX(0);
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes underline {
    0%, 100% {
        opacity: 0.7;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem); 
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    max-width: 592px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 1s both;
}

.status-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 14px;
    background: rgba(251, 177, 23, 0.1);
    border: 1px solid rgba(251, 177, 23, 0.08);
    border-radius: 12px;
    color: rgba(251, 177, 23, 0.8);
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: default;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 1.5s both;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

.status-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Secondary Section */
.secondary {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.secondary-description {
    font-size: clamp(1rem, 2vw, 1.125rem, 18px);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 592px;
    text-wrap: balance;
}

.social-cta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
    font-weight: 300;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-action {
    position: relative;
}

.btn-action::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}


/* Footer */
.footer {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        padding: 16px 0;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .main {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .beer-icons {
        height: 100px;
    }
    
    .beer-icon-1 {
        --translate-x: -100px;
    }
    
    .beer-icon-1 img {
        height: 80px;
        width: 80px;
    }
    
    .beer-icon-2 img {
        height: 90px;
        width: 90px;
    }
    
    .beer-icon-3 {
        --translate-x: 30px;
    }
    
    .beer-icon-3 img {
        height: 80px;
        width: 80px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .secondary-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
   
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 16px;
        font-size: 12px;
    }
  
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    animation: fadeInUp 1s ease-out;
}

.secondary {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.footer {
    animation: fadeInUp 1s ease-out 0.6s both;
}



