@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1a1f3d;
    --accent-color: #00d4ff;
    --text-color: #e0e7ff;
    --gradient-start: #ff6b6b;
    --gradient-end: #4ecdc4;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --clock-color: rgba(224, 231, 255, 0.9);
    --currency-color: rgba(255, 215, 0, 0.9);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANxM8mAAAACHRSTlMzMzMzMzMzM85JBgUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAwSURBVDjLY2AY2uF/IBjawf8hE4JhOhQxsIJwqD6Ihv+HNhr+H9po2EbDNhq2EQkBf0sEwKJ9ErQAAAAASUVORK5CYII=');
    opacity: 0.03;
    pointer-events: none;
    z-index: 3;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 31, 61, 1) 0%, 
        rgba(20, 30, 70, 1) 50%, 
        rgba(15, 25, 60, 1) 100%
    );
    z-index: 1;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    opacity: 0.4;
}

.clock-icon {
    position: absolute;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3;
}

.clock-face {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--clock-color);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.clock-hour-hand {
    width: 35%;
    height: 2px;
    background-color: var(--clock-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: left center;
    z-index: 2;
}

.clock-minute-hand {
    width: 45%;
    height: 1px;
    background-color: var(--clock-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: left center;
    z-index: 3;
}

.currency-symbol {
    position: absolute;
    color: var(--currency-color);
    font-weight: bold;
    text-align: center;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.3);
    opacity: 0.3;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 4;
}

.globe-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin-right: 4rem;
}

#globe {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0) 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
}

.content {
    max-width: 600px;
}

.title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 8s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    }
}

@keyframes pulsate {
    0%, 100% {
        opacity: 1;
        filter: blur(0px);
        text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color), 0 0 30px var(--accent-color);
    }
    50% {
        opacity: 0.9;
        filter: blur(2px);
        text-shadow: 0 0 20px var(--accent-color), 0 0 40px var(--accent-color), 0 0 60px var(--accent-color), 0 0 80px var(--accent-color);
    }
}

.title span.time-effect {
    color: #00ffcc;
    -webkit-text-fill-color: #00ffcc;
    animation: pulsate 2.5s ease-in-out infinite;
    display: inline-block;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.plus {
    color: #00ffcc;
    -webkit-text-fill-color: #00ffcc;
    animation: pulsate 2.5s ease-in-out infinite;
    animation-delay: 0.3s;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature .icon {
    font-size: 1.5rem;
}

.feature p {
    font-size: 1rem;
    opacity: 0.9;
}

.enter-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enter-button::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: 0.5s;
}

.enter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.enter-button:hover::before {
    left: 100%;
}

@media (max-width: 1200px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .globe-container {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .globe-container {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .features {
        gap: 1rem;
    }

    .globe-container {
        width: 250px;
        height: 250px;
    }
}
