:root {
    --primary-blue: #6a8cff;
    --primary-purple: #b56bff;
    --accent-pink: #ff6bcb;
    --dark-bg: #0f0e1a;
    --card-bg: #1a1830;
    --text-light: #f0f0ff;
    --text-muted: #b0b0d0;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(106, 140, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(181, 107, 255, 0.1) 0%, transparent 25%);
    z-index: -1;
    animation: float 15s infinite alternate ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(2deg); }
}


.watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
    opacity: 0.05;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}


.header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.logo {
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}

.logo h1 {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Comic Neue', cursive;
    color: var(--text-light);
    text-transform: lowercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    transform: rotate(-2deg);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}



@keyframes orbit {
    from { transform: translateX(-50%) rotate(0deg) translateY(-30px) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg) translateY(-30px) rotate(-360deg); }
}

.pulse-effect {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 4s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.1; }
    100% { transform: scale(0.95); opacity: 0.3; }
}

.tagline {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}


section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--primary-purple));
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.highlight {
    color: var(--primary-blue);
    margin-right: 8px;
}

.about p {
    font-size: 1rem;
}


.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.social-card:hover i {
    transform: scale(1.1);
}

.social-card.twitter { color: #1DA1F2; }
.social-card.youtube { color: #FF0000; }
.social-card.instagram { color: #E1306C; }
.social-card.discord { color: #5865F2; }
.social-card.roblox { color: #00A2FF; }




.footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .logo h1 {
        font-size: 3rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 1.5rem;
    }
}


.boundaries {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
}

.boundaries h2 {
    color: #ff3232;
}

.no-interact-list {
    list-style-type: none;
    padding-left: 1rem;
}

.no-interact-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.no-interact-list li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: #ff3232;
    font-weight: bold;
}


.credit {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    z-index: 100;
}

.credit:hover {
    color: var(--primary-blue);
    background: rgba(106, 140, 255, 0.1);
    transform: translateY(-2px);
}