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

body {
    font-family: 'Poppins', sans-serif;
    background: url('images/background1.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.3), rgba(255, 0, 255, 0.3));
    z-index: -1;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.glitch-container {
    animation: glitch 10s infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    2% { transform: translate(-5px, 5px); }
    4% { transform: translate(5px, -5px); }
    6% { transform: translate(0); }
    100% { transform: translate(0); }
}

.coin-icon {
    width: 100px;
    animation: spin 5s infinite linear;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: #00ffcc;
    text-shadow: 3px 3px 5px #ff00ff;
    margin: 10px 0;
}

.tagline {
    font-size: 1.2rem;
    color: #ffcc00;
    margin-bottom: 20px;
}

.countdown h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: #ff00ff;
    margin-bottom: 30px;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #00ffcc;
}

.time-block {
    background: #333;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.time-block:hover {
    transform: scale(1.1);
}

.time-block span {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: #ffcc00;
}

.time-block p {
    font-size: 0.8rem;
    color: #00ffcc;
}

.presale, .info, .social {
    margin-top: 40px;
}

.presale h3, .info h3, .social h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: #00ffcc;
    margin-bottom: 20px;
}

.presale p, .info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #ff00ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #00ffcc;
    color: #000;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links img {
    width: 40px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    .time-block {
        font-size: 1.5rem;
    }
}