/* ========================================
   MANDINGAME - Style CSS
   ======================================== */

/* Variables CSS */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5849c4;
    --secondary-color: #00cec9;
    --accent-color: #fd79a8;
    --dark-bg: #0f0f1a;
    --dark-card: #1a1a2e;
    --dark-hover: #252542;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6c6c7e;
    --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --gradient-accent: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-width: 280px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body.discord-page {
    background-image: url('./images/banner-bg.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: var(--dark-bg);
}

body.home-page {
    background-image: url('./images/index-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: var(--dark-bg);
}

@media (max-width: 1024px),
(hover: none) and (pointer: coarse) {
    body.discord-page {
        background-image: none;
    }

    body.discord-page::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('./images/banner-bg.gif');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        z-index: -2;
        pointer-events: none;
    }

    body.home-page {
        background-image: none;
    }

    body.home-page::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('./images/index-bg.png');
        background-size: cover;
        background-position: 65% center;
        background-repeat: no-repeat;
        z-index: -2;
        pointer-events: none;
    }
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(108, 92, 231, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253, 121, 168, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 206, 201, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   HAMBURGER MENU
   ======================================== */
.hamburger {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.hamburger.active {
    left: calc(var(--sidebar-width) - 70px);
    top: 30px;
}

.hamburger:hover {
    background: var(--dark-hover);
    transform: scale(1.05);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   SIDEBAR MENU
   ======================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: calc(-1 * var(--sidebar-width));
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--dark-card);
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
    left: 0;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.4s ease-in-out, left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-header {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    flex: 1;
    padding: 20px 15px;
    position: relative;
}

.nav-links::after {
    content: '';
    position: absolute;
    inset: 0 15px 0 15px;
    pointer-events: none;
}

.nav-links li {
    margin-bottom: 8px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.active {
    color: var(--text-primary);
}

.nav-links .nav-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.22) 0%, rgba(108, 92, 231, 0.12) 100%);
    box-shadow: 0 16px 50px rgba(108, 92, 231, 0.08);
    transform: translateY(0);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    pointer-events: none;
    z-index: 0;
}

.nav-links a::before {
    content: '▸';
    opacity: 0;
    transition: var(--transition);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
}

.sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.sidebar-footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   OVERLAY
   ======================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

@media (max-width: 1024px),
(hover: none) and (pointer: coarse) {
    .overlay {
        backdrop-filter: none;
    }
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    min-height: 100vh;
    padding: 100px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    will-change: transform, opacity;
}

body.slide-in-down .main-content,
body.slide-in-up .main-content,
body.slide-out-down .main-content,
body.slide-out-up .main-content {
    animation-fill-mode: forwards;
}

body.slide-in-down .main-content {
    animation: pageSlideInDown 0.6s ease-out;
}

body.slide-in-up .main-content {
    animation: pageSlideInUp 0.6s ease-out;
}

body.slide-out-down .main-content {
    animation: pageSlideOutDown 0.4s ease-in;
}

body.slide-out-up .main-content {
    animation: pageSlideOutUp 0.4s ease-in;
}

@keyframes pageSlideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageSlideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageSlideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(40px);
    }
}

@keyframes pageSlideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-40px);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 160px);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-shadow:
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 2px 0 #000,
        0 -2px 0 #000,
        2px 0 0 #000,
        -2px 0 0 #000;
}

.hero-content .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 2px #000;
    text-shadow: none;
}

.hero-content .highlight-large {
    font-size: clamp(2rem, 8vw, 3.5rem);
    display: inline-block;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-container {
    position: relative;
}

.avatar {
    width: 280px;
    height: 280px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 60px rgba(108, 92, 231, 0.4),
        0 0 100px rgba(108, 92, 231, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 0 60px rgba(108, 92, 231, 0.4),
            0 0 100px rgba(108, 92, 231, 0.2);
    }

    50% {
        box-shadow:
            0 0 80px rgba(108, 92, 231, 0.6),
            0 0 120px rgba(108, 92, 231, 0.3);
    }
}

.avatar-icon {
    font-size: 8rem;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 80px;
}

.feature-card {
    background: var(--dark-card);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(108, 92, 231, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   SOCIAL PREVIEW SECTION
   ======================================== */
.social-preview {
    margin-top: 80px;
    text-align: center;
}

.social-preview h2 {
    font-size: 2rem;
    margin-bottom: 35px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 40px;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    transition: var(--transition);
    min-width: 150px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.social-card.discord:hover {
    border-color: #5865F2;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.3);
}

.social-card.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
}

.social-card.twitch:hover {
    border-color: #9146FF;
    box-shadow: 0 10px 40px rgba(145, 70, 255, 0.3);
}

.social-icon {
    font-size: 2.5rem;
}

.social-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .avatar {
        width: 200px;
        height: 200px;
    }

    .avatar-icon {
        font-size: 5rem;
    }
}

@media (max-width: 576px) {
    .hamburger {
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
    }

    .main-content {
        padding: 80px 12px 40px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero {
        gap: 25px;
        min-height: auto;
        padding-top: 10px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content .highlight-large {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .avatar {
        width: 150px;
        height: 150px;
    }

    .avatar-icon {
        font-size: 4rem;
    }

    .features {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .feature-card {
        padding: 20px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-card {
        width: 100%;
        max-width: 280px;
    }

    /* Discord page responsive */
    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-icon {
        font-size: 3rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .server-card {
        max-width: 100%;
    }

    .server-banner {
        height: 120px;
    }

    .server-icon {
        width: 70px;
        height: 70px;
    }

    .server-info {
        padding: 20px 15px;
    }

    .server-info h2 {
        font-size: 1.4rem;
    }

    .server-description {
        font-size: 0.9rem;
    }

    .server-stats {
        gap: 15px;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .btn-discord {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }

    .channels-section h2 {
        font-size: 1.5rem;
    }

    /* Projects page responsive */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    /* Socials page responsive */
    .socials-grid {
        grid-template-columns: 1fr;
    }

    .social-profile-card {
        padding: 15px;
        gap: 12px;
    }

    .social-icon-large {
        font-size: 1.8rem;
        min-width: 40px;
    }

    .social-info h3 {
        font-size: 1rem;
    }

    .social-info p {
        font-size: 0.8rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.5s;
}

.social-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.social-card:nth-child(1) {
    animation-delay: 0.6s;
}

.social-card:nth-child(2) {
    animation-delay: 0.7s;
}

.social-card:nth-child(3) {
    animation-delay: 0.8s;
}

/* ========================================
   PAGE HEADER (Shared)
   ======================================== */
.page-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.page-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ========================================
   DISCORD PAGE
   ======================================== */
.discord-server {
    margin-bottom: 60px;
}

.server-card {
    background: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    max-width: 700px;
    margin: 0 auto;
}

.server-banner {
    height: 180px;
    background: linear-gradient(180deg, #1a1028 0%, #2d1f4e 40%, #4a3568 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.server-icon {
    width: 100px;
    height: 100px;
    background: var(--dark-bg);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
    position: relative;
    z-index: 10;
}

.server-info {
    padding: 35px;
    text-align: center;
}

.server-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.server-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: left;
}

.server-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-discord {
    background: #5865F2;
    color: white;
    padding: 16px 35px;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

/* Channels */
.channels-section {
    margin-bottom: 60px;
}

.channels-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.channel-card {
    background: var(--dark-card);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.channel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 101, 242, 0.3);
}

.channel-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.channel-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.channel-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Rules */
.rules-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.rules-list {
    max-width: 700px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    gap: 20px;
    background: rgba(26, 26, 46, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    transition: var(--transition);
}

.rule-item:hover {
    transform: translateX(5px);
}

.rule-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 40px;
}

.rule-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.rule-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   PROJECTS PAGE
   ======================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.project-card {
    background: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(108, 92, 231, 0.3);
}

.project-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-icon {
    font-size: 4rem;
}

.project-content {
    padding: 25px;
}

.project-tag {
    display: inline-block;
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-tech span {
    background: var(--dark-hover);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.project-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--secondary-color);
}

.project-card.coming-soon .project-image {
    background: linear-gradient(135deg, #2d2d44 0%, #3d3d5c 100%);
}

/* Skills */
.skills-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.skill-item {
    background: var(--dark-card);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.skill-item:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.3);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.skill-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.skill-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   SOCIALS PAGE
   ======================================== */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.social-profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--dark-card);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.social-profile-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.social-profile-card.discord:hover {
    border-color: #5865F2;
}

.social-profile-card.youtube:hover {
    border-color: #FF0000;
}

.social-profile-card.twitch:hover {
    border-color: #9146FF;
}

.social-profile-card.twitter:hover {
    border-color: #1DA1F2;
}

.social-profile-card.instagram:hover {
    border-color: #E4405F;
}

.social-profile-card.tiktok:hover {
    border-color: #00f2ea;
}

.social-profile-card.github:hover {
    border-color: #333;
}

.social-profile-card.steam:hover {
    border-color: #1b2838;
}

.social-icon-large {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
}

.social-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.social-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-arrow {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-profile-card:hover .social-arrow {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Contact */
.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--dark-card);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(108, 92, 231, 0.3);
}

.contact-icon {
    font-size: 2rem;
}

.contact-text {
    color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .server-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .social-profile-card {
        padding: 20px;
    }

    .social-icon-large {
        font-size: 2rem;
    }
}

/* ========================================
   DESKTOP RESPONSIVE (Sidebar & Layout)
   ======================================== */
@media (min-width: 969px) {
    .hamburger {
        display: none !important;
    }

    .sidebar {
        left: 0 !important;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.4);
    }

    body {
        padding-left: var(--sidebar-width);
    }

    .overlay {
        display: none !important;
    }
}