:root {
    --primary-teal: rgb(59, 88, 255);       
    --primary-dark: rgb(48, 74, 224);       
    --bg-body: #f4f6f9;        
    --bg-dark-section: #1e1e1e;    
    --bg-blue-grey: #2c3e50;       
    --text-main: #2c3e50;          
    --text-light: #ecf0f1;         
    --text-gray: #95a5a6;          
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;    
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-body); font-family: var(--font-body); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.highlight { color: var(--primary-teal); }
.section-title { font-family: var(--font-head); font-size: 3rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; letter-spacing: -1px; line-height: 1; }

.navbar { background: #ffffff; height: 80px; display: flex; justify-content: space-between; align-items: center; padding: 0 40px; position: fixed; top: 0; width: 100%; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.nav-left .logo { font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; color: var(--primary-teal); text-decoration: none; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
.nav-center { display: flex; gap: 30px; }
.nav-center a { text-decoration: none; color: var(--text-main); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; font-family: var(--font-head); transition: 0.3s; }
.nav-center a:hover { color: var(--primary-teal); }
.nav-right { display: flex; gap: 15px; }
.btn-top { text-decoration: none; padding: 10px 25px; border: 2px solid #e0e0e0; color: var(--text-main); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; font-family: var(--font-head); transition: 0.3s; white-space: nowrap; }
.btn-top:hover { border-color: var(--primary-teal); color: var(--primary-teal); }
.btn-top.fill { background: var(--primary-teal); border-color: var(--primary-teal); color: white; }
.btn-top.fill:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; }

.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    background: #ffffff;
    overflow: hidden;
}

.big-text-bg {
    position: absolute; top: 50px; left: -20px; width: 100%;
    font-family: var(--font-head); font-weight: 900; font-size: 16vw; line-height: 0.85;
    color: transparent; -webkit-text-stroke: 2px rgba(38, 198, 218, 0.08);
    z-index: 0; pointer-events: none; user-select: none; display: flex; flex-direction: column;
}

.hero-content {
    display: flex;
    position: relative;
    z-index: 1;
    gap: 40px;
}

.hero-left, .hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-text-area {
    display: flex; flex-direction: column; justify-content: center; flex: 1;
}

.hero-text-area h1 {
    font-family: var(--font-head); font-size: 4rem; font-weight: 900; line-height: 1; margin-bottom: 25px; color: var(--text-main);
}
.hero-text-area .slash { color: var(--text-gray); font-weight: 300; margin: 0 10px; }
.hero-description { font-size: 1.1rem; color: #666; line-height: 1.6; max-width: 90%; }

.server-monitor-box {
    width: 100%; height: auto; min-height: 160px;
    position: relative; overflow: hidden; color: white;
    background: linear-gradient(to right, rgba(59, 88, 255, 0.95), rgba(59, 88, 255, 0.9)), url('assets/monitor_bg.jpg');
    background-size: cover; background-position: center; transition: 0.3s;
}
.server-monitor-box:hover { transform: translateY(-5px); }
.monitor-content { padding: 20px 25px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; gap: 15px; }

.monitor-header { display: flex; justify-content: space-between; align-items: center; }
.status-indicator { display: flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; background: #00ff00; border-radius: 50%; box-shadow: 0 0 5px #00ff00; }
.status-text { font-size: 0.75rem; font-weight: 700; opacity: 0.9; letter-spacing: 1px; }
.version-tag { font-family: monospace; background: rgba(0,0,0,0.2); padding: 2px 6px; border-radius: 3px; font-size: 0.8rem; }

.monitor-main-info { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; }
.monitor-main-info h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; line-height: 1; margin: 0; }
.monitor-stats-big { display: flex; align-items: baseline; font-family: var(--font-head); }
.monitor-stats-big .value { font-size: 2rem; font-weight: 900; }
.monitor-stats-big .divider { font-size: 1.5rem; opacity: 0.6; margin: 0 5px; }
.monitor-stats-big .total { font-size: 1.5rem; opacity: 0.8; font-weight: 700; }

.monitor-progress { width: 100%; height: 6px; background: rgba(255,255,255,0.25); border-radius: 3px; overflow: hidden; }
.monitor-progress .progress-bar { height: 100%; background: white; box-shadow: 0 0 10px rgba(255,255,255,0.5); }

.monitor-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.ip-address { font-family: monospace; font-size: 0.95rem; letter-spacing: 0.5px; opacity: 0.9; }
.btn-copy { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4); color: white; padding: 4px 12px; font-size: 0.7rem; font-weight: 700; cursor: pointer; transition: 0.2s; font-family: var(--font-head); text-transform: uppercase; }
.btn-copy:hover { background: white; color: var(--primary-teal); }

.main-visual { position: relative; height: 320px; width: 100%; overflow: hidden; flex: 1; }
.main-visual img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.main-visual:hover img { transform: scale(1.05); }
.play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 70px; height: 70px; background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-teal); font-size: 1.8rem; cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: 0.3s;
}
.play-btn:hover { background: var(--primary-teal); color: white; transform: translate(-50%, -50%) scale(1.1); }

.hero-blocks-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; }

.block-btn {
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 20px; height: 160px; text-decoration: none; position: relative; transition: 0.3s;
}
.block-btn:hover { transform: translateY(-5px); }

.teal-block { background: var(--primary-teal); color: white; }
.dark-block { background: var(--text-main); color: white; justify-content: center; text-align: center; }
.outline-block { background: white; border: 2px solid var(--primary-teal); color: var(--primary-teal); }
.outline-block:hover { background: var(--primary-teal); color: white; }

.block-btn h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; line-height: 1; }
.block-btn .count { font-size: 2.2rem; font-weight: 900; font-family: var(--font-head); margin-top: 5px; }
.block-btn .label { font-size: 0.7rem; text-transform: uppercase; opacity: 0.7; font-family: var(--font-body); }
.corner-icon { position: absolute; bottom: 20px; right: 20px; font-size: 1.2rem; }

.info-blocks-section { position: relative; padding: 100px 0; background: white; overflow: hidden; }
.big-text-bg-scrolling { position: absolute; top: -30px; left: 0; white-space: nowrap; font-family: var(--font-head); font-weight: 900; font-size: 10rem; color: rgba(0, 0, 0, 0.03); z-index: 0; pointer-events: none; }
.split-layout { display: flex; gap: 60px; align-items: center; position: relative; z-index: 1; margin-bottom: 100px; }
.split-layout:last-child { margin-bottom: 0; }
.split-layout.reverse { flex-direction: row-reverse; }
.image-side { flex: 1; height: 400px; box-shadow: 20px 20px 0px var(--bg-body); }
.split-layout.reverse .image-side { box-shadow: -20px 20px 0px var(--bg-body); }
.image-side img { width: 100%; height: 100%; object-fit: cover; }
.content-side { flex: 1; }
.content-side h2 { font-family: var(--font-head); font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 20px; color: var(--text-main); }
.text-box { background: var(--bg-body); padding: 30px 40px; border-left: 6px solid var(--primary-teal); }
.split-layout.reverse .text-box { border-left: none; border-right: 6px solid var(--primary-teal); }
.text-box p { margin-bottom: 20px; font-size: 1rem; color: #555; }
.btn-wiki { display: inline-block; background: var(--primary-teal); color: white; padding: 15px 30px; text-decoration: none; font-weight: 800; text-transform: uppercase; font-family: var(--font-head); margin-top: 10px; transition: 0.3s; font-size: 0.9rem; }
.btn-wiki:hover { background: var(--primary-dark); }

.how-to-section { background: var(--bg-dark-section); color: white; padding: 80px 0; }
.how-to-section .section-title { color: white; }
.highlight-outline { -webkit-text-stroke: 2px var(--primary-teal); color: transparent; }
.steps-grid { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; gap: 30px; margin-top: 50px; }
.step-box { background: #252525; padding: 30px; position: relative; border: 1px solid #333; transition: 0.3s; display: flex; flex-direction: column; justify-content: space-between; }
.step-box:hover { border-color: var(--primary-teal); }
.step-box p { color: #999; font-size: 0.9rem; line-height: 1.5; }
.step-header { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.step-title { font-family: var(--font-head); font-weight: 900; color: white; font-size: 1.1rem; margin-bottom: 5px; text-transform: uppercase; }
.num { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: white; opacity: 0.2; line-height: 1; flex-shrink: 0; }

.teal-bg { background: var(--primary-teal); color: white; }
.highlight-box { grid-column: 1 / 2; grid-row: 2 / 3; }
.vertical-box { grid-column: 2 / 3; grid-row: 1 / 3; background: var(--primary-teal); border: none; }
.vertical-box:hover { transform: translateY(-5px); }
.vertical-box .num { color: white; opacity: 0.5; }
.vertical-box h3 { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; line-height: 1; margin: 20px 0; color: white; }
.vertical-box p { color: rgba(255,255,255,0.8); }
.bottom-icon { align-self: flex-end; font-size: 2rem; color: white; margin-top: 20px; }

.btn-download-big { background: var(--primary-teal); color: white; text-decoration: none; display: flex; justify-content: space-between; align-items: center; padding: 15px 25px; font-family: var(--font-head); font-weight: 800; font-size: 1rem; text-transform: uppercase; transition: 0.3s; margin-top: auto; }
.btn-download-big:hover { background: white; color: var(--primary-teal); }

footer { background: #111; color: #666; padding: 40px 0; text-align: center; font-size: 0.85rem; border-top: 1px solid #222; }

@media (max-width: 1024px) {
    .navbar { padding: 0 20px; }
    .nav-center { display: none; }
    
    .hero { padding-top: 100px; }
    .hero-content { flex-direction: column; }
    .hero-text-area h1 { font-size: 3rem; }
    
    .steps-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .highlight-box { grid-column: auto; grid-row: auto; }
    .vertical-box { grid-column: auto; grid-row: auto; min-height: 250px; }
    
    .split-layout, .split-layout.reverse { flex-direction: column; gap: 30px; margin-bottom: 60px; }
    .image-side { width: 100%; height: 300px; box-shadow: none !important; }
    .text-box { border: none !important; border-top: 4px solid var(--primary-teal) !important; padding: 25px; }
}

@media (max-width: 768px) {
    
    .navbar { 
        height: auto; 
        flex-direction: column; 
        padding: 15px; 
        gap: 15px;
        position: relative;
    }
    
    .nav-right { width: 100%; justify-content: space-between; }
    .btn-top { width: 48%; text-align: center; padding: 10px 0; }

    .hero { padding-top: 30px; padding-bottom: 60px; }
    .big-text-bg { font-size: 20vw; top: 10px; opacity: 0.05; }
    
    .hero-text-area h1 { font-size: 2.2rem; text-align: center; }
    .hero-description { text-align: center; margin: 0 auto 20px auto; }
    .hero-text-area .slash { display: none; }
    
    .server-monitor-box { min-height: auto; padding-bottom: 10px; }
    .monitor-main-info { flex-direction: column; align-items: flex-start; margin-bottom: 10px; }
    .monitor-stats-big { margin-top: 5px; }
    .monitor-footer { flex-direction: column; align-items: stretch; }
    .btn-copy { width: 100%; margin-top: 5px; padding: 10px; }

    .hero-right { gap: 20px; }
    .main-visual { height: 200px; }
    .hero-blocks-row { grid-template-columns: 1fr; gap: 10px; }
    
    .block-btn { 
        flex-direction: row; 
        align-items: center; 
        height: auto; 
        min-height: 100px; 
        padding: 15px 20px;
        text-align: left;
    }
    .dark-block { flex-direction: column; align-items: center; }
    .block-btn h3 { font-size: 1.1rem; margin-bottom: 0; }
    .block-btn .block-content { display: flex; flex-direction: column; }
    .corner-icon { position: static; margin-left: auto; font-size: 1.5rem; }

    .info-blocks-section { padding: 60px 0; }
    .content-side h2 { font-size: 2rem; text-align: center; margin-bottom: 15px; }
    .image-side { height: 200px; }
    .text-box { padding: 20px 15px; }
    .btn-wiki { width: 100%; text-align: center; }

    .section-title { font-size: 2rem; text-align: center; }
    .how-to-section { padding: 50px 0; }
    .steps-grid { margin-top: 30px; gap: 20px; }
    .step-box { padding: 20px; }
    .vertical-box h3 { font-size: 1.8rem; }
    .btn-download-big { font-size: 0.9rem; padding: 15px; }
}


.roadmap-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 30px 30px;
}

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 20px;
}

.roadmap-legend {
    display: flex;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #888;
}

.legend-item { display: flex; align-items: center; gap: 8px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }
.legend-item .dot { width: 8px; height: 8px; border-radius: 50%; display: block; }

.legend-item .dot.done { background: #cbd5e0; }
.legend-item .dot.active { background: var(--primary-teal); box-shadow: 0 0 8px rgba(228, 54, 54, 0.4); }
.legend-item .dot.future { border: 2px solid #e0e0e0; background: transparent; }

.timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 20px;
}

.track-line {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f0f2f5;
    z-index: 0;
    border-radius: 3px;
}

.timeline-point {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    transition: 0.3s;
    padding: 0 15px;
}

.point-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.point-marker .date {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.85rem;
    color: #95a5a6;
    transition: 0.3s;
    text-transform: uppercase;
}

.marker-circle {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 3px solid #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* -- TURINYS -- */
.point-content {
    text-align: center;
    opacity: 0.4;
    transform: translateY(0);
    transition: 0.4s ease;
    max-width: 260px;
}

.point-content h3 {
    color: var(--text-main);
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.point-content p {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
}


.timeline-point:hover .point-content {
    opacity: 1;
    transform: translateY(-5px);
}
.timeline-point:hover .marker-circle {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(228, 54, 54, 0.15);
}
.timeline-point:hover .date {
    color: var(--primary-teal);
}

.timeline-point.done .marker-circle {
    border-color: #e0e0e0;
    color: var(--text-main);
    background: #f8f9fa;
}
.timeline-point.done:hover .marker-circle {
    border-color: var(--text-main);
}

.timeline-point.active .point-content { opacity: 1; }
.timeline-point.active .date { color: var(--primary-teal); }
.timeline-point.active .marker-circle {
    border-color: var(--primary-teal);
    color: white;
    background: var(--primary-teal);
    box-shadow: 0 0 0 5px rgba(228, 54, 54, 0.1);
}

.pulse { animation: glow-pulse-light 2s infinite; }

@keyframes glow-pulse-light {
    0% { box-shadow: 0 0 0 0 rgba(228, 54, 54, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(228, 54, 54, 0); }
    100% { box-shadow: 0 0 0 0 rgba(228, 54, 54, 0); }
}

@media (max-width: 900px) {
    .timeline-track {
        flex-direction: column;
        padding-left: 20px;
    }

    .track-line {
        width: 3px;
        height: 100%;
        left: 43px;
        top: 0;
    }

    .timeline-point {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 40px;
        text-align: left;
        padding: 0;
    }

    .point-marker {
        flex-shrink: 0;
        margin-bottom: 0;
        margin-right: 20px;
        flex-direction: column-reverse;
        width: 50px;
    }
    
    .point-marker .date { font-size: 0.75rem; }

    .point-content {
        text-align: left;
        opacity: 1;
        padding-top: 10px;
    }
}

.season-section {
    padding: 100px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0; 
}

.season-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.season-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1; 
    max-width: 650px;
}

.season-number {
    font-family: var(--font-head);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-teal);
    opacity: 0.1;
    flex-shrink: 0;
    user-select: none;
}

.season-headline {
    flex: 1;
}

.season-subtitle {
    display: block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.season-headline h2 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.stroke-text {
    -webkit-text-stroke: 2px var(--text-main);
    color: transparent;
}

.season-headline p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    border-left: 4px solid var(--primary-teal);
    padding-left: 20px;
}

.season-image-side {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.season-visual-link {
    display: block;
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.season-visual-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.play-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.play-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 24px;
    padding-left: 4px;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.play-text {
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 16px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    transition: 0.3s;
}

.season-visual-link:hover {
    transform: translateY(-5px);
}

.season-visual-link:hover img {
    filter: brightness(0.7);
    transform: scale(1.05);
}

.season-visual-link:hover .play-icon-circle {
    background: var(--primary-teal);
    color: #fff;
    transform: scale(1.1);
}

.season-visual-link:hover .play-text {
    background: var(--primary-teal);
}

@media (max-width: 1024px) {
    .season-split {
        flex-direction: column;
        gap: 50px;
        text-align: left;
    }

    .season-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        max-width: 100%;
    }

    .season-number {
        font-size: 5rem;
        margin-bottom: 0;
    }

    .season-image-side {
        width: 100%;
        flex: auto;
    }
}

.dm-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid #f0f0f0;
    overflow: hidden;
}

.dm-section::after {
    content: 'PVP // DM';
    position: absolute;
    right: -50px;
    bottom: -20px;
    font-family: var(--font-head);
    font-size: 12rem;
    font-weight: 900;
    color: #f7f9fc;
    z-index: 0;
    pointer-events: none;
    line-height: 0.8;
}

.dm-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.dm-info {
    flex: 1;
    max-width: 500px;
}

.dm-label {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.dm-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.highlight-dm {
    color: var(--primary-teal);
    position: relative;
    display: inline-block;
}

.highlight-dm::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(228, 54, 54, 0.1);
    z-index: -1;
}

.dm-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    border-left: 3px solid var(--text-main);
    padding-left: 20px;
}

.dm-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-solid-dm, .btn-outline-dm {
    padding: 15px 30px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-solid-dm {
    background: var(--text-main);
    color: white;
    border: 2px solid var(--text-main);
}

.btn-solid-dm:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    transform: translateY(-3px);
}

.btn-outline-dm {
    background: transparent;
    color: var(--text-main);
    border: 2px solid #e0e0e0;
}

.btn-outline-dm:hover {
    border-color: var(--text-main);
    background: #fff;
    transform: translateY(-3px);
}

.dm-visual-side {
    flex: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dm-video-hero {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    background: #000;
    box-shadow: 20px 20px 0px var(--text-main); 
    border: 2px solid var(--text-main); 
    transition: 0.3s;
    overflow: hidden;
}

.dm-video-hero a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.dm-video-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: 0.3s;
    pointer-events: none;
    z-index: 2;
}

.dm-video-hero:hover {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0px var(--primary-teal);
    border-color: var(--primary-teal);
    z-index: 2;
}

.dm-video-hero:hover .play-overlay {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    transform: translate(-50%, -50%) scale(1.1);
}

.dm-video-hero:hover img {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .dm-grid {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }
    
    .dm-info { max-width: 100%; }
    
    .dm-desc {
        border-left: none;
        padding-left: 0;
    }
    
    .dm-actions {
        justify-content: center;
    }
    
    .dm-video-hero {
        box-shadow: 10px 10px 0px var(--text-main);
    }
    
    .dm-section::after { display: none; }
}

.discord-cta-section {
    padding: 80px 0;
    background-color: var(--bg-dark-section);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid #222;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 20rem;
    color: #5865F2;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.discord-cta-section h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.discord-cta-section p {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.discord-cta-section p strong {
    color: #fff;
    font-weight: 500;
}

.btn-discord-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #5865F2;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-discord-large:hover {
    background-color: #4752c4;
    transform: translateY(-3px);
}

.btn-discord-large i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .discord-cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-icon-bg {
        font-size: 15rem;
    }
    
    .btn-discord-large {
        width: 100%;
        justify-content: center;
    }
}