body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    overflow: hidden; /* Hide scrollbars */
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
    color: #FFD700;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(0.5px);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed; /* Keep header at the top */
    width: 100%;
    top: 0;
    z-index: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}

.launch-status {
    flex: 1;
    text-align: center;
    color: #FF4444;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 0 0 10px #FF4444;
}

.header-spacer {
    flex: 1;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

.x-logo {
    height: 30px;
    width: 30px;
    fill: white;
    margin-left: 15px;
    transition: transform 0.3s ease-in-out;
}

.x-logo:hover {
    transform: scale(1.1);
}

.telegram-logo {
    height: 30px;
    width: 30px;
    fill: #0088cc;
    margin-left: 15px;
    transition: transform 0.3s ease-in-out;
}

.telegram-logo:hover {
    transform: scale(1.1);
    fill: #0099dd;
}

main {
    height: 200vh; /* Adjusted for two pages */
}

section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: #FFD700;
    text-shadow: 0 0 15px #FFD700;
}

#page1 {
    background: transparent;
    color: #FFD700;
    text-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700;
}

.explore-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.explore-btn {
    position: relative;
    padding: 20px 40px;
    font-size: 1.8em;
    font-weight: bold;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 300% 300%;
    border: none;
    border-radius: 50px;
    color: #000;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 32px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientShift 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.explore-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 45px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 215, 0, 0.8);
    animation: gradientShift 1s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 
        0 15px 45px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 215, 0, 0.8); }
    50% { box-shadow: 
        0 20px 60px rgba(255, 215, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 50px rgba(255, 215, 0, 1); }
}

.explore-btn:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.btn-text {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: all 0.3s ease;
}

.explore-btn:hover .btn-text {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: textGlow 1.5s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }
    to { text-shadow: 0 0 20px rgba(0, 0, 0, 0.8); }
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #FFA500);
    background-size: 400% 400%;
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

.explore-btn:hover .btn-glow {
    opacity: 1;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 50px;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s linear infinite;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 0.7s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 1.4s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 2.1s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.explore-btn:hover .particle {
    animation-duration: 1.5s;
}
