/* ========================================
   BuyRareName - Coming Soon Page Styles
   Primary Color: #70D9F0 (Cyan Blue)
   Background: #FFFFFF (White)
   Text: #000000 (Black)
======================================== */

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

:root {
    --primary-color: #70D9F0;
    --secondary-color: #FFFFFF;
    --text-color: #000000;
    --shadow-light: rgba(112, 217, 240, 0.2);
    --shadow-medium: rgba(112, 217, 240, 0.3);
    --shadow-strong: rgba(112, 217, 240, 0.5);
    --gradient-primary: linear-gradient(135deg, #70D9F0 0%, #4FC3E8 100%);
}

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

/* ========================================
   Animated Background
======================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(15, 22, 36, 0.85) 100%), 
                url('../img/background.png') center center / cover no-repeat;
}

.cube {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-color);
    background: rgba(112, 217, 240, 0.08);
    animation: float 20s infinite ease-in-out;
    opacity: 0.2;
}

.cube:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.cube:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.cube:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.cube:nth-child(4) {
    top: 70%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.cube:nth-child(5) {
    top: 20%;
    left: 40%;
    animation-delay: 3s;
    animation-duration: 17s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

/* ========================================
   Main Container
======================================== */
.main-container {
    position: relative;
    z-index: 10;
    padding: 2rem 1rem;
}

/* ========================================
   Logo Section
======================================== */
.logo-container {
    margin-bottom: 2rem;
}

.logo-img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px var(--shadow-medium));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   Content Card
======================================== */
.content-card {
    background: var(--primary-color);
    border-radius: 25px;
    padding: 3.5rem 3rem;
    box-shadow: 
        0 25px 70px rgba(112, 217, 240, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

/* ========================================
   Typography
======================================== */
.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.main-title .highlight {
    color: #FFFFFF;
    display: inline-block;
    position: relative;
}

.subtitle {
    font-size: 1.3rem;
    color: #FFFFFF;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.subtitle strong {
    color: #FFFFFF;
    font-weight: 700;
}

.status-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   Features List (Gaming Style)
======================================== */
.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.features-list {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #FFFFFF;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #FFFFFF;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item strong {
    font-weight: 700;
}

/* ========================================
   Discord CTA (Gaming Style)
======================================== */
.discord-cta {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.95;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #5865F2;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.5);
    border: 3px solid #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 50px rgba(88, 101, 242, 0.6);
    color: #fff;
}

.discord-btn i {
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ========================================
   Stats Section (Gaming Style)
======================================== */
.stats-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.stat-item {
    padding: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #FFFFFF;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Footer
======================================== */
.footer-text {
    color: #a0a0b0;
    opacity: 0.8;
}

.footer-text small {
    font-size: 0.9rem;
}

/* ========================================
   Particles Background
======================================== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
    opacity: 0.4;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .content-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .discord-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .logo-img {
        max-width: 140px;
    }
    
    .cube {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .discord-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .logo-img {
        max-width: 120px;
    }
}

/* ========================================
   Smooth Scrolling & Animations
======================================== */
html {
    scroll-behavior: smooth;
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ========================================
   Loading Animation
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    animation: fadeIn 0.8s ease-out;
}