/* ========================================
   OZEU - Cyber Tech Style
   カッコいい荒らし団体デザイン
   ======================================== */

@font-face {
    font-family: 'Keinan Mugimaru';
    src: url('keinan-mugimaru.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ========== Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg-dark: #1a1a2e;
    --color-bg-secondary: #16213e;
    --color-dark-red: #ff6b9d;
    --color-red: #ff8fb1;
    --color-red-bright: #ffa5c7;
    --color-pink-light: #ffc2e0;
    --color-pink: #ff85b3;
    --color-blue-light: #a8daff;
    --color-cyan: #70d6ff;
    --color-text: #ffffff;
    --color-text-muted: #c8c8c8;
    --color-accent-purple: #c77dff;
    --color-accent-lavender: #e0aaff;
}

body {
    font-family: 'Keinan Mugimaru', 'Segoe UI', 'Arial', sans-serif;
    background: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ========== Background Effects ========== */
.glitch-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, var(--color-pink-light) 49%, var(--color-pink-light) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--color-cyan) 49%, var(--color-cyan) 51%, transparent 52%);
    background-size: 40px 40px, 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.04;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0, 20px 20px; }
    100% { background-position: 40px 40px, 60px 60px; }
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 999;
    opacity: 0.5;
}

/* ========== Loading Screen ========== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-dark-red) 30%, var(--color-cyan) 70%, var(--color-bg-dark) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: left;
}

.terminal-loader {
    background: rgba(22, 33, 62, 0.9);
    border: 2px solid var(--color-pink-light);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(255, 194, 224, 0.6), inset 0 0 20px rgba(112, 214, 255, 0.2);
    min-width: min(400px, 90vw);
    max-width: 90vw;
}

.terminal-text p {
    font-family: 'Courier New', monospace;
    color: var(--color-cyan);
    font-size: 1rem;
    margin: 0.5rem 0;
    opacity: 0;
}

.typing-effect {
    animation: typeIn 0.5s ease-in forwards;
}

@keyframes typeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.glitch-text {
    color: var(--color-red-bright);
    font-weight: bold;
}

.typing-effect.glitch-text {
    animation: typeIn 0.5s ease-in forwards, glitchAnim 2s ease-in-out infinite 1s;
}

@keyframes glitchAnim {
    0%, 90%, 100% { text-shadow: 0 0 20px var(--color-pink-light), 0 0 30px var(--color-cyan); }
    92% { text-shadow: 1px 0 var(--color-pink-light), -1px 0 var(--color-cyan); }
    94% { text-shadow: -1px 0 var(--color-pink-light), 1px 0 var(--color-cyan); }
    96% { text-shadow: 1px 1px var(--color-pink-light), -1px -1px var(--color-cyan); }
    98% { text-shadow: -1px 1px var(--color-pink-light), 1px -1px var(--color-cyan); }
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(22, 33, 62, 0.5);
    border: 1px solid var(--color-cyan);
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 3px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-pink-light), var(--color-accent-purple), var(--color-pink-light), var(--color-cyan));
    background-size: 200% 100%;
    animation: loadingBar 2s ease-in-out forwards, shimmer 1s linear infinite;
    box-shadow: 0 0 15px var(--color-pink-light);
}

@keyframes loadingBar {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========== Hero Header ========== */
.hero-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: 
        radial-gradient(ellipse at top, var(--color-dark-red) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, var(--color-cyan) 0%, transparent 50%),
        var(--color-bg-dark);
    border-bottom: 3px solid var(--color-pink-light);
    overflow: hidden;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--color-pink-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-cyan) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.15;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.glitch-container {
    margin-bottom: 1rem;
}

.ozeu-logo-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px var(--color-pink-light)) 
            drop-shadow(0 0 60px var(--color-cyan))
            drop-shadow(0 0 40px var(--color-accent-lavender));
    animation: glitchTitle 5s infinite, logoFloat 3s ease-in-out infinite;
}

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

.glitch-title {
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
    text-shadow: 
        0 0 30px var(--color-pink-light),
        0 0 60px var(--color-cyan),
        0 0 40px var(--color-accent-purple);
    animation: glitchTitle 5s infinite;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-title::before {
    animation: glitchBefore 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    text-shadow: 2px 0 var(--color-pink-light);
}

.glitch-title::after {
    animation: glitchAfter 2s infinite reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    text-shadow: -2px 0 var(--color-cyan);
}

@keyframes glitchTitle {
    0%, 90%, 100% { transform: translateX(0); }
    92% { transform: translateX(-3px); }
    94% { transform: translateX(3px); }
    96% { transform: translateX(-3px); }
    98% { transform: translateX(3px); }
}

@keyframes glitchBefore {
    0%, 95%, 100% { transform: translateX(0); }
    96% { transform: translateX(-5px); }
    97% { transform: translateX(5px); }
    98% { transform: translateX(-5px); }
    99% { transform: translateX(5px); }
}

@keyframes glitchAfter {
    0%, 95%, 100% { transform: translateX(0); }
    96% { transform: translateX(5px); }
    97% { transform: translateX(-5px); }
    98% { transform: translateX(5px); }
    99% { transform: translateX(-5px); }
}

.cyber-tagline {
    font-size: 1.8rem;
    color: var(--color-pink-light);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--color-pink-light);
}

.bracket {
    color: var(--color-cyan);
    font-weight: bold;
}

.text-highlight {
    color: var(--color-red-bright);
    font-weight: bold;
    text-shadow: 0 0 15px var(--color-red-bright);
}

.stats-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-badge {
    background: linear-gradient(135deg, var(--color-pink-light), var(--color-cyan), var(--color-accent-purple));
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-cyan);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(112, 214, 255, 0.5), 0 0 10px rgba(255, 194, 224, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-divider {
    color: var(--color-cyan);
    font-size: 1.5rem;
}

/* ========== Navigation ========== */
.cyber-nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem;
}

.nav-item {
    color: var(--color-text);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(112, 214, 255, 0.15), rgba(255, 194, 224, 0.15));
    border: 1px solid var(--color-cyan);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-pink-light), transparent);
    transition: left 0.5s;
}

.nav-item:hover::before {
    left: 100%;
}

.nav-item:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-pink-light), var(--color-accent-purple));
    border-color: var(--color-pink-light);
    box-shadow: 0 0 25px var(--color-cyan), 0 0 15px var(--color-pink-light);
    transform: translateY(-3px);
}

/* ========== Main Content ========== */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

@media (max-width: 768px) {
    main {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 1.5rem 0.5rem;
    }
}

.cyber-section {
    margin-bottom: 6rem;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-cyan), var(--color-pink-light), var(--color-accent-purple)) 1;
}

.section-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-pink-light);
    font-family: 'Courier New', monospace;
    opacity: 0.4;
    text-shadow: 0 0 20px var(--color-cyan);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
}

.title-bracket {
    color: var(--color-cyan);
    margin: 0 0.5rem;
}

/* ========== Intro Section ========== */
.intro-section {
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-main {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(255, 139, 157, 0.2), rgba(112, 214, 255, 0.2));
    border: 1px solid var(--color-pink-light);
    border-left: 4px solid var(--color-cyan);
    padding: 2rem;
    position: relative;
    border-radius: 8px;
}

.content-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 48%, var(--color-pink-light) 50%, transparent 52%),
        linear-gradient(0deg, transparent 48%, var(--color-cyan) 50%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.05;
    pointer-events: none;
}

.text-block {
    position: relative;
    z-index: 1;
}

.cyber-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

.text-accent {
    color: var(--color-pink-light);
    font-weight: bold;
}

.content-side {
    position: sticky;
    top: 2rem;
}

.mascot-container {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(255, 194, 224, 0.1));
    border: 2px solid var(--color-cyan);
    padding: 2rem;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    box-shadow: 0 0 30px rgba(112, 214, 255, 0.5), 0 0 15px rgba(255, 182, 193, 0.3);
}

.mascot-image {
    width: 100%;
    max-width: 250px;
    filter: drop-shadow(0 0 20px var(--color-pink-light));
    margin-bottom: 1rem;
}

.mascot-label {
    background: var(--color-pink-light);
    color: var(--color-bg-dark);
    padding: 0.5rem 1rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* ========== FEATURES Section ========== */
.FEATURES-section {
}

.FEATURES-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .FEATURES-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .FEATURES-card {
        padding: 2.5rem 2rem;
    }
    
    .card-icon img {
        width: 100px;
        height: 100px;
    }
    
    .card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .card-text {
        font-size: 1.15rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .FEATURES-grid {
        gap: 1.2rem;
    }
    
    .FEATURES-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon img {
        width: 90px;
        height: 90px;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-text {
        font-size: 1.1rem;
    }
}

.FEATURES-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(255, 139, 157, 0.2), rgba(112, 214, 255, 0.2));
    border: 2px solid var(--color-pink-light);
    padding: 2rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    transition: all 0.4s;
    overflow: hidden;
    border-radius: 8px;
}

.FEATURES-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-pink-light) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.FEATURES-card:hover::before {
    opacity: 0.1;
}

.FEATURES-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-cyan);
    box-shadow: 0 10px 40px rgba(112, 214, 255, 0.6), 0 0 30px rgba(255, 194, 224, 0.5);
}

.card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--color-cyan);
    border-right: 3px solid var(--color-cyan);
}

.card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 15px var(--color-pink-light));
}

.card-title {
    font-size: 1.3rem;
    font-family: 'Courier New', monospace;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.card-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-pink-light), transparent);
    margin: 1rem 0;
}

.card-text {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-tech {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: linear-gradient(135deg, rgba(112, 214, 255, 0.2), rgba(255, 194, 224, 0.2));
    border: 1px solid var(--color-cyan);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    color: var(--color-pink-light);
    border-radius: 4px;
}

/* ========== Tools Section ========== */
.tools-section {
    position: relative;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        gap: 1.5rem;
    }
}

.tools-mascot {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1;
    opacity: 0.4;
}

.tools-mascot-img {
    max-width: 280px;
    width: 100%;
    filter: drop-shadow(0 0 30px var(--color-cyan));
    animation: floatSlow 4s ease-in-out infinite;
}

.tools-content {
    background: linear-gradient(135deg, rgba(255, 139, 157, 0.2), rgba(22, 33, 62, 0.9), rgba(112, 214, 255, 0.2));
    border: 2px solid var(--color-pink-light);
    padding: 3rem;
    position: relative;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .tools-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .tools-content {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }
}

.tools-content::before,
.tools-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-cyan);
}

.tools-content::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.tools-content::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.tools-desc {
    text-align: center;
    margin-bottom: 2rem;
}

.tools-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tool-spec {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(255, 194, 224, 0.1));
    border: 1px solid var(--color-cyan);
    border-left: 3px solid var(--color-pink-light);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    border-radius: 6px;
}

.tool-spec:hover {
    background: linear-gradient(135deg, rgba(112, 214, 255, 0.2), rgba(255, 194, 224, 0.2));
    border-left-color: var(--color-cyan);
    box-shadow: 0 0 25px rgba(112, 214, 255, 0.4), 0 0 15px rgba(255, 194, 224, 0.3);
    transform: translateX(5px);
}

.spec-icon {
    font-size: 2rem;
}

.spec-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-text);
}

/* ========== Cyber Buttons ========== */
.cyber-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-pink-light), var(--color-cyan), var(--color-accent-purple));
    border: 2px solid var(--color-cyan);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    margin: 2rem auto;
    display: flex;
    width: fit-content;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cyber-button:hover::before {
    left: 100%;
}

.cyber-button:hover {
    transform: translateX(5px) translateY(-2px);
    box-shadow: 0 0 30px var(--color-cyan), 0 0 50px var(--color-pink-light), 0 5px 20px rgba(112, 214, 255, 0.4);
    border-color: var(--color-pink-light);
    background: linear-gradient(135deg, var(--color-cyan), var(--color-pink-light), var(--color-accent-lavender));
}

.btn-border {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-cyan);
    border-left: 2px solid var(--color-cyan);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.tools-btn {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-pink-light), var(--color-accent-lavender));
}

/* ========== Join Section ========== */
.join-section {
    background: linear-gradient(135deg, rgba(255, 139, 157, 0.3), rgba(22, 33, 62, 0.9), rgba(112, 214, 255, 0.3));
    border: 3px solid var(--color-pink-light);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(255, 194, 224, 0.3), 0 0 20px rgba(112, 214, 255, 0.3);
}

@media (max-width: 768px) {
    .join-section {
        padding: 3rem 1.5rem;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .join-section {
        padding: 2rem 1rem;
        border-radius: 8px;
    }
}

.join-mascot {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 0;
    opacity: 0.3;
}

.links-mascot {
    max-width: 250px;
    width: 100%;
    filter: drop-shadow(0 0 30px var(--color-pink-light));
    animation: floatSlow 4s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.join-section::before {
    content: 'JOIN';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 20vw, 15rem);
    font-weight: 900;
    color: var(--color-pink-light);
    opacity: 0.05;
    font-family: 'Courier New', monospace;
    pointer-events: none;
    text-shadow: 0 0 50px var(--color-cyan);
}

.join-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.join-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.join-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.join-buttons .cyber-button {
    margin: 0;
}

.discord-btn {
    background: linear-gradient(135deg, var(--color-pink-light), var(--color-accent-purple), var(--color-cyan));
}

.twitter-btn {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-accent-lavender), var(--color-blue-light));
}

.secondary-btn {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-bg-secondary), var(--color-pink));
}

.join-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.7), rgba(112, 214, 255, 0.1));
    border: 2px solid var(--color-cyan);
    border-top: 3px solid var(--color-pink-light);
    min-width: 150px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(112, 214, 255, 0.3);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-pink-light);
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px var(--color-cyan), 0 0 30px var(--color-pink-light);
    margin-bottom: 0.5rem;
}

.stat-name {
    font-size: 0.9rem;
    color: var(--color-cyan);
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.stat-divider-vertical {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--color-cyan), var(--color-pink-light), transparent);
}

/* ========== Gallery Grid ========== */
.gallery-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: rgba(22, 33, 62, 0.5);
    border: 2px solid var(--color-cyan);
    aspect-ratio: 16 / 9;
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 8px;
}

.gallery-item:hover {
    border-color: var(--color-pink-light);
    box-shadow: 0 0 30px rgba(112, 214, 255, 0.6), 0 0 20px rgba(255, 194, 224, 0.5);
    transform: scale(1.05);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .glitch-title {
        font-size: 5rem;
    }
    
    .ozeu-logo-img {
        max-width: 400px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-side {
        position: static;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .hero-header {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .header-content {
        padding: 3rem 1rem;
    }
    
    .glitch-title {
        font-size: 3.5rem;
    }
    
    .ozeu-logo-img {
        max-width: 85vw;
        width: 100%;
    }
    
    .cyber-tagline {
        font-size: 1.3rem;
        padding: 0 1rem;
        margin-top: 1rem;
    }
    
    .stats-inline {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .stat-badge {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .cyber-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 1.5rem;
        width: 100%;
        max-width: 400px;
    }
    
    .nav-item {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
        text-align: center;
        clip-path: none;
        border-radius: 6px;
    }
    
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .section-number {
        font-size: 2.5rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    
    .cyber-section {
        padding: 3rem 1rem !important;
    }
    
    .cyber-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-main {
        padding: 1.5rem;
    }
    
    .mascot-container {
        padding: 1.5rem;
    }
    
    .mascot-image {
        max-width: 200px;
    }
    
    .power-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .power-card {
        padding: 1.5rem;
    }
    
    .tools-features {
        grid-template-columns: 1fr;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cyber-button {
        width: 100%;
        max-width: 320px;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .btn-text {
        font-size: 1rem;
    }
    
    .join-text {
        font-size: 1.4rem;
    }
    
    .terminal-loader {
        min-width: 0;
        width: 90vw;
        max-width: 350px;
        padding: 1.5rem;
    }
    
    .terminal-text p {
        font-size: 0.85rem;
    }
    
    .loading-content {
        width: 100%;
        padding: 0 1rem;
    }
    
    .join-mascot {
        position: static;
        text-align: center;
        margin-bottom: 2rem;
        opacity: 0.5;
    }
    
    .links-mascot {
        max-width: 180px;
    }
    
    .tools-mascot {
        position: static;
        text-align: center;
        margin-bottom: 2rem;
        opacity: 0.5;
    }
    
    .tools-mascot-img {
        max-width: 200px;
    }
    
    .join-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider-vertical {
        display: none;
    }
    
    .stat-box {
        width: 100%;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stat-name {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.75rem;
    }
    
    .gallery-item {
        aspect-ratio: 1 / 1;
    }
    
    .join-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero-header {
        min-height: auto;
        padding: 2.5rem 0.75rem;
    }
    
    .header-content {
        padding: 2rem 0.5rem;
    }
    
    .glitch-title {
        font-size: 2.5rem;
    }
    
    .ozeu-logo-img {
        max-width: 90vw;
        width: 100%;
    }
    
    .cyber-tagline {
        font-size: 1.2rem;
        padding: 0 0.5rem;
        line-height: 1.5;
        margin-top: 1rem;
    }
    
    .stats-inline {
        gap: 0.6rem;
        margin-top: 1.2rem;
    }
    
    .stat-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .cyber-nav {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem 0.5rem;
        gap: 0.5rem;
        max-width: 100%;
        width: 100%;
    }
    
    .nav-item {
        font-size: 0.85rem;
        padding: 0.7rem 0.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        word-break: break-word;
    }
    
    .section-number {
        font-size: 2rem;
    }
    
    .section-header {
        gap: 0.5rem;
    }
    
    .cyber-section {
        padding: 2.5rem 1rem !important;
    }
    
    .cyber-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .content-main {
        padding: 1.5rem;
    }
    
    .power-card {
        padding: 1.5rem;
    }
    
    .card-icon img {
        width: 100px;
        height: 100px;
    }
    
    .card-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .card-text {
        font-size: 1.15rem;
        line-height: 1.7;
    }
    
    .cyber-button {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        max-width: 100%;
    }
    
    .btn-text {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 1 / 1;
    }
    
    .join-text {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-name {
        font-size: 0.9rem;
    }
}

/* ========== Animations ========== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cyber-section {
    animation: slideIn 0.8s ease-out;
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}
