:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.6);
    --primary-glow: #6366f1; /* Purple-blue */
    --secondary-glow: #a855f7; /* Brighter purple */
    --text-main: #ffffff;
    --text-dim: #94a3b8; /* Slate gray */
    --yt-red: #ff0000;
    --fb-blue: #1877F2;
    --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2397 75%, #ad24ad 100%);
    --x-black: #000000;
    --linktree-green: #43E660;
    --web-blue: #0ea5e9;
    --play-blue: #3bccff;
    --play-green: #48ff48;
    --play-yellow: #ffeb3b;
    --border-glass: rgba(255, 255, 255, 0.1);
}

/* --- Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor */
    display: flex;
    flex-direction: column;
}

/* --- Interactive Background --- */
.bg-mesh {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
    opacity: 0.5;
}

.blob {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: var(--primary-glow);
    animation: move 25s infinite alternate;
}

.blob-2 {
    background: var(--secondary-glow);
    right: -100px; top: -100px;
    animation-delay: -5s;
}

@keyframes move {
    0% { transform: translate(-10%, -10%) scale(1); }
    100% { transform: translate(50%, 50%) scale(1.2); }
}

/* --- Custom Cursor --- */
.cursor-dot {
    width: 8px; height: 8px;
    background: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.cursor-outline {
    width: 40px; height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s, background-color 0.3s;
}

/* --- Main Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 40px;
}

.brand-logo {
    width: 120px; height: 120px;
    border-radius: 30px;
    background: white;
    padding: 10px;
    margin-bottom: 24px;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.4);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-logo:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 70px rgba(99, 102, 241, 0.6);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(to right, #fff, var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Grid & Cards --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 40px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear(45deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: translateX(-100%);
    transition: 0.6s ease-out;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    background: rgba(30, 30, 30, 0.8);
}

.card:hover::before {
    transform: translateX(100%);
}

.icon-box {
    width: 70px; height: 70px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: 0.3s ease-out;
}

.yt-color { color: var(--yt-red); }
.play-color {
    background: linear-gradient(45deg, var(--play-blue), var(--play-green), var(--play-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.game-color { color: var(--secondary-glow); }


.card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: white;
}
.card:hover .yt-color { color: var(--yt-red); -webkit-text-fill-color: initial; }
.card:hover .play-color { -webkit-text-fill-color: #000; }
.card:hover .game-color { color: var(--secondary-glow); }


.card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); line-height: 1.6; flex-grow: 1; }

.card-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-glow);
    font-weight: 600;
    margin-top: 15px;
    opacity: 0.8;
    transition: 0.3s ease-out;
}

.card:hover .card-link-arrow {
    opacity: 1;
    gap: 15px;
}

/* --- Policy Page Styles --- */
.policy-container {
    max-width: 850px;
    margin: 40px auto;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.7;
    transition: 0.3s ease-out;
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid var(--border-glass);
}

.back-link:hover {
    opacity: 1;
    transform: translateX(-5px);
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-glow);
}

.policy-content {
    line-height: 1.8;
}
.policy-content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.policy-content h2 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.policy-content p {
    margin-bottom: 2rem;
    color: var(--text-dim);
    font-size: 1.05rem;
}
.policy-content ul, .policy-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}
.policy-content li {
    margin-bottom: 1.2rem;
    color: var(--text-dim);
}
.policy-content li strong {
    color: #fff;
}

/* --- Footer Styles --- */
footer {
    text-align: center;
    padding: 80px 24px;
    margin-top: auto;
    border-top: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-box h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
    font-weight: 800;
}

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

.social-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white; /* Icon remains white */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    filter: brightness(1.1);
    color: white;
}

/* Colorful Icon Backgrounds by Default */
.icon-yt { background: #ff0000; }
.icon-fb { background: #1877f2; }
.icon-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2397 75%, #ad24ad 100%); }
.icon-x { background: #000000; } /* Keep black for official X look, but icon must show */
.icon-linktree { background: #43E660; color: black !important; }
.icon-web { background: #0ea5e9; }

.copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
    width: 100%;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .cursor-dot, .cursor-outline { display: none; }
    body { cursor: auto; }
}
