* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #7c4dff;
    --primary-hover: #9575ff;
    --secondary-color: #4a4dff;
    --text-color: #ffffff;
    --bg-color: #121212;
    --card-bg: #1a1a23;
    --accent-color: #8e44ad;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: 
        radial-gradient(circle at 20% 35%, rgba(124, 77, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(74, 77, 255, 0.1) 0%, transparent 50%);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo .diamond {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-color);
}

.logo h1 span {
    font-weight: 400;
    opacity: 0.8;
}

.content {
    margin-bottom: 3rem;
}

h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.countdown-item {
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(74, 77, 255, 0.05));
    z-index: 0;
}

.countdown-item span {
    position: relative;
    z-index: 1;
    display: block;
}

.countdown-item #days,
.countdown-item #hours,
.countdown-item #minutes,
.countdown-item #seconds {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-item .label {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skins-showcase {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 4rem 0;
    perspective: 1000px;
    position: relative;
}

.skins-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(136, 71, 255, 0.5) 0%, rgba(18, 18, 18, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 5s ease-in-out infinite;
}

.skin {
    width: 160px;
    height: 160px;
    background-color: transparent;
    overflow: visible;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.skin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
}

.skin:hover {
    transform: translateY(-15px) rotateY(10deg) scale(1.08);
}

.skin:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 15px 30px rgba(124, 77, 255, 0.5));
}

.skin-1 {
    transform: rotate(-5deg);
    animation: float1 6s ease-in-out infinite;
}

.skin-2 {
    z-index: 2;
    animation: float2 6s ease-in-out infinite 0.5s;
}

.skin-3 {
    transform: rotate(5deg);
    animation: float3 6s ease-in-out infinite 1s;
}

@keyframes float1 {
    0% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(-4deg); }
    100% { transform: translateY(0px) rotate(-5deg); }
}

@keyframes float2 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float3 {
    0% { transform: translateY(0px) rotate(5deg); }
    50% { transform: translateY(-18px) rotate(6deg); }
    100% { transform: translateY(0px) rotate(5deg); }
}

@keyframes glowPulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.4);
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1.2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .skins-showcase {
        flex-wrap: wrap;
    }
    
    .skin {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-item #days,
    .countdown-item #hours,
    .countdown-item #minutes,
    .countdown-item #seconds {
        font-size: 1.8rem;
    }
} 