@import url('https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
  --primary-color: #00a8e8;
  --secondary-color: #003459;
  --accent-color: #ff6b6b;
  --background-color: #00171f;
  --text-color: #ffffff;
        }

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

body, html {
    height: 100%;
    font-family: "Roboto", sans-serif;
    background: rgb(175, 93, 196);
    overflow-x: hidden;
        }

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    position: relative;
        }

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInDown 1s forwards 0.5s;
        }

.cta-button {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            color: var(--text-color);
            border: none;
            padding: 1rem 2rem;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.5);
            animation: popIn 0.5s forwards 1.5s, pulse 2s infinite 2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

.cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px var(--accent-color);
        }

.cta-button::after {
            content: '→';
            font-size: 1.5rem;
        }

.star {
            position: absolute;
            background-color: #fff;
            width: 2px;
            height: 2px;
            border-radius: 50%;
            opacity: 0;
            animation: twinkle 5s infinite;
        }

.counter {
            font-size: 1.2rem;
            margin-top: 1rem;
            opacity: 0;
            animation: fadeIn 1s forwards 2s;
        }

.timer {
            font-size: 1.5rem;
            margin-top: 1rem;
            font-weight: bold;
            opacity: 0;
            animation: fadeIn 1s forwards 2.5s;
        }

@keyframes fadeInDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

@keyframes popIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

@keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

@keyframes twinkle {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

@keyframes fadeIn {
            to { opacity: 1; }
        }

@media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .cta-button { font-size: 1rem; padding: 0.8rem 1.6rem; }
            .counter, .timer { font-size: 1rem; }
        }