/*
Theme Name: MyPlatform Elite V10
Description: Professional Coming Soon Theme - Perfect Pyramid Layout with Working GIF Links
Version: 10.0.0
Author: Elite Design Team
Text Domain: myplatform-elite-v10
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --elite-black: #0B0B0F;
    --elite-dark: #151520;
    --elite-purple: #6C5CE7;
    --elite-blue: #00BFFF;
    --elite-cyan: #00FFFF;
    --elite-gold: #FFD700;
    --elite-white: #FFFFFF;
    --elite-gray: #8E8E93;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--elite-black);
    color: var(--elite-white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Elite 3D Background */
.elite-3d-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg,
        var(--elite-black) 0%,
        var(--elite-dark) 25%,
        #1a1a2e 50%,
        #16213e 75%,
        var(--elite-black) 100%);
    overflow: hidden;
}

.elite-3d-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle at 20% 30%, var(--elite-purple) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--elite-blue) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--elite-cyan) 0%, transparent 30%);
    animation: eliteRotate 20s linear infinite;
    opacity: 0.15;
}

@keyframes eliteRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Floating Elite Particles */
.elite-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, var(--elite-cyan), var(--elite-blue));
    border-radius: 50%;
    animation: eliteFloat 15s infinite linear;
    opacity: 0.8;
    box-shadow: 0 0 10px var(--elite-cyan);
}

@keyframes eliteFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Elite Main Layout: Sol - Orta - Sağ */
.elite-main-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    max-width: 1400px;
    width: 100%;
    align-items: start;
}

.elite-left-section,
.elite-right-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.elite-center-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.elite-nav-item {
    background: linear-gradient(145deg,
        rgba(108, 92, 231, 0.15),
        rgba(0, 191, 255, 0.15),
        rgba(0, 255, 255, 0.1));
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: var(--elite-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.elite-mystery-nav {
    cursor: pointer;
    background: linear-gradient(145deg,
        rgba(108, 92, 231, 0.1),
        rgba(0, 191, 255, 0.1),
        rgba(0, 255, 255, 0.05));
    border: 3px solid transparent;
}

.elite-mystery-nav .mystery-symbol {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--elite-cyan);
    text-shadow:
        0 0 20px var(--elite-cyan),
        0 0 40px var(--elite-blue),
        0 0 60px var(--elite-purple);
    animation: mysterySpin 3s ease-in-out infinite alternate;
    z-index: 2;
    position: relative;
}

.elite-mystery-nav:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(108, 92, 231, 0.3),
        0 0 60px rgba(0, 191, 255, 0.2);
}

.elite-nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(45deg,
        var(--elite-purple),
        var(--elite-blue),
        var(--elite-cyan),
        var(--elite-gold));
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    animation: eliteNavBorder 3s linear infinite;
}

@keyframes eliteNavBorder {
    0% { background: linear-gradient(0deg, var(--elite-purple), var(--elite-blue), var(--elite-cyan)); }
    33% { background: linear-gradient(120deg, var(--elite-blue), var(--elite-cyan), var(--elite-gold)); }
    66% { background: linear-gradient(240deg, var(--elite-cyan), var(--elite-gold), var(--elite-purple)); }
    100% { background: linear-gradient(360deg, var(--elite-gold), var(--elite-purple), var(--elite-blue)); }
}

.elite-nav-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(108, 92, 231, 0.3),
        0 0 60px rgba(0, 191, 255, 0.2);
}

.nav-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--elite-cyan));
}

.elite-nav-item span {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(45deg, var(--elite-white), var(--elite-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Container */
.elite-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Main Title */
.elite-main-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--elite-white);
    text-align: center;
    margin-bottom: 4rem;
    text-shadow:
        0 0 20px var(--elite-cyan),
        0 0 40px var(--elite-blue),
        0 0 60px var(--elite-purple);
    animation: eliteTitlePulse 3s ease-in-out infinite alternate;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--elite-white), var(--elite-cyan), var(--elite-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes eliteTitlePulse {
    0% {
        text-shadow: 0 0 20px var(--elite-cyan), 0 0 40px var(--elite-blue);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 30px var(--elite-cyan), 0 0 60px var(--elite-blue), 0 0 80px var(--elite-purple);
        transform: scale(1.05);
    }
}

/* Mystery Boxes Grid - Updated Layout */
.mystery-grid-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    width: 100%;
}

.mystery-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    width: 100%;
}

/* Elite Mystery Box */
.elite-mystery-box {
    aspect-ratio: 1;
    background: linear-gradient(145deg,
        rgba(108, 92, 231, 0.1),
        rgba(0, 191, 255, 0.1),
        rgba(0, 255, 255, 0.05));
    border: 3px solid transparent;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.6s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.elite-mystery-box::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    background: linear-gradient(45deg,
        var(--elite-purple),
        var(--elite-blue),
        var(--elite-cyan),
        var(--elite-gold),
        var(--elite-purple));
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    animation: eliteBorderRotate 4s linear infinite;
}

@keyframes eliteBorderRotate {
    0% {
        background: linear-gradient(0deg, var(--elite-purple), var(--elite-blue), var(--elite-cyan), var(--elite-gold));
    }
    25% {
        background: linear-gradient(90deg, var(--elite-blue), var(--elite-cyan), var(--elite-gold), var(--elite-purple));
    }
    50% {
        background: linear-gradient(180deg, var(--elite-cyan), var(--elite-gold), var(--elite-purple), var(--elite-blue));
    }
    75% {
        background: linear-gradient(270deg, var(--elite-gold), var(--elite-purple), var(--elite-blue), var(--elite-cyan));
    }
    100% {
        background: linear-gradient(360deg, var(--elite-purple), var(--elite-blue), var(--elite-cyan), var(--elite-gold));
    }
}

.elite-mystery-box:hover {
    transform: translateY(-20px) rotateY(15deg) rotateX(10deg) scale(1.05);
    box-shadow:
        0 30px 60px rgba(108, 92, 231, 0.4),
        0 0 100px rgba(0, 191, 255, 0.3),
        0 0 150px rgba(0, 255, 255, 0.2);
}

/* Mystery Symbol */
.mystery-symbol {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    font-weight: 900;
    color: var(--elite-cyan);
    text-shadow:
        0 0 20px var(--elite-cyan),
        0 0 40px var(--elite-blue),
        0 0 60px var(--elite-purple);
    animation: mysterySpin 3s ease-in-out infinite alternate;
    z-index: 2;
    position: relative;
}

.mystery-grid-bottom .mystery-symbol {
    font-size: 5rem;
}

@keyframes mysterySpin {
    0% {
        transform: scale(1) rotateZ(0deg);
        color: var(--elite-cyan);
        text-shadow: 0 0 20px var(--elite-cyan), 0 0 40px var(--elite-blue);
    }
    25% {
        transform: scale(1.1) rotateZ(10deg);
        color: var(--elite-blue);
        text-shadow: 0 0 30px var(--elite-blue), 0 0 60px var(--elite-purple);
    }
    50% {
        transform: scale(1.2) rotateZ(-5deg);
        color: var(--elite-purple);
        text-shadow: 0 0 40px var(--elite-purple), 0 0 80px var(--elite-gold);
    }
    75% {
        transform: scale(1.15) rotateZ(15deg);
        color: var(--elite-gold);
        text-shadow: 0 0 50px var(--elite-gold), 0 0 100px var(--elite-cyan);
    }
    100% {
        transform: scale(1.3) rotateZ(0deg);
        color: var(--elite-cyan);
        text-shadow: 0 0 60px var(--elite-cyan), 0 0 120px var(--elite-blue);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .elite-main-title { font-size: 3.5rem; }
    .mystery-grid-top, .mystery-grid-bottom { gap: 2.5rem; }
    .mystery-symbol { font-size: 5rem; }
    .mystery-grid-bottom .mystery-symbol { font-size: 4rem; }
}

@media (max-width: 768px) {
    .elite-main-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
        letter-spacing: 1px;
    }

    .elite-main-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .elite-left-section,
    .elite-right-section {
        gap: 1.5rem;
    }

    .elite-nav-item {
        padding: 1.5rem 1rem;
        flex-direction: row;
        gap: 1rem;
        text-align: left;
    }

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

    .elite-nav-item span {
        font-size: 1rem;
    }

    .mystery-grid-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 300px;
        margin: 0 auto 2rem auto;
    }

    .mystery-grid-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 300px;
    }

    .mystery-symbol { font-size: 4rem; }
    .mystery-grid-bottom .mystery-symbol { font-size: 3.5rem; }

    .elite-container { padding: 1rem; }

    .legal-disclaimer {
        padding: 2rem 1.5rem;
    }

    .legal-disclaimer h3 {
        font-size: 1.4rem;
    }

    .legal-disclaimer p {
        font-size: 1rem;
    }

    .legal-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .legal-point {
        font-size: 1rem;
    }

    .vision-section {
        padding: 2rem 1.5rem;
    }

    .vision-title {
        font-size: 1.8rem;
    }

    .vision-intro {
        font-size: 1.1rem;
    }

    .vision-main p {
        font-size: 1rem;
        text-align: left;
    }

    .vision-categories h3,
    .vision-process h3 {
        font-size: 1.3rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .category-icon {
        font-size: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .vision-commitment {
        padding: 1.5rem;
    }

    .commitment-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .elite-main-title { font-size: 2rem; }
    .mystery-symbol { font-size: 3rem; }
    .mystery-grid-bottom .mystery-symbol { font-size: 2.5rem; }
}

/* Elite Legal Section */
.elite-legal-section {
    margin-top: 4rem;
    max-width: 1000px;
    width: 100%;
}

.legal-disclaimer {
    background: linear-gradient(145deg,
        rgba(108, 92, 231, 0.1),
        rgba(0, 191, 255, 0.1),
        rgba(0, 255, 255, 0.05));
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    backdrop-filter: blur(10px);
    text-align: center;
}

.legal-disclaimer::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(45deg,
        var(--elite-gold),
        var(--elite-cyan),
        var(--elite-blue),
        var(--elite-purple));
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    animation: legalBorderGlow 4s linear infinite;
}

@keyframes legalBorderGlow {
    0% { background: linear-gradient(0deg, var(--elite-gold), var(--elite-cyan), var(--elite-blue)); }
    25% { background: linear-gradient(90deg, var(--elite-cyan), var(--elite-blue), var(--elite-purple)); }
    50% { background: linear-gradient(180deg, var(--elite-blue), var(--elite-purple), var(--elite-gold)); }
    75% { background: linear-gradient(270deg, var(--elite-purple), var(--elite-gold), var(--elite-cyan)); }
    100% { background: linear-gradient(360deg, var(--elite-gold), var(--elite-cyan), var(--elite-blue)); }
}

.legal-disclaimer h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--elite-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--elite-gold);
}

.legal-disclaimer p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--elite-white);
}

.highlight {
    background: linear-gradient(45deg, var(--elite-cyan), var(--elite-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.legal-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.legal-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    text-align: left;
}

.legal-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px var(--elite-cyan));
}

/* Vision Section */
.vision-section {
    margin-top: 3rem;
    background: linear-gradient(145deg,
        rgba(0, 191, 255, 0.08),
        rgba(108, 92, 231, 0.08),
        rgba(255, 215, 0, 0.05));
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.vision-section::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(45deg,
        var(--elite-cyan),
        var(--elite-purple),
        var(--elite-gold),
        var(--elite-blue));
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    animation: visionBorderGlow 5s linear infinite;
}

@keyframes visionBorderGlow {
    0% { background: linear-gradient(0deg, var(--elite-cyan), var(--elite-purple), var(--elite-gold)); }
    20% { background: linear-gradient(72deg, var(--elite-purple), var(--elite-gold), var(--elite-blue)); }
    40% { background: linear-gradient(144deg, var(--elite-gold), var(--elite-blue), var(--elite-cyan)); }
    60% { background: linear-gradient(216deg, var(--elite-blue), var(--elite-cyan), var(--elite-purple)); }
    80% { background: linear-gradient(288deg, var(--elite-cyan), var(--elite-purple), var(--elite-gold)); }
    100% { background: linear-gradient(360deg, var(--elite-purple), var(--elite-gold), var(--elite-cyan)); }
}

.vision-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    color: var(--elite-cyan);
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 30px var(--elite-cyan);
}

.vision-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--elite-white);
}

.highlight-danger {
    background: linear-gradient(45deg, #ff4757, #ff6348);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.vision-main {
    background: rgba(21, 21, 32, 0.6);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--elite-gold);
}

.vision-main p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: justify;
}

.vision-categories h3,
.vision-process h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    color: var(--elite-gold);
    margin: 2.5rem 0 1.5rem 0;
    text-shadow: 0 0 15px var(--elite-gold);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-item {
    background: rgba(21, 21, 32, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-3px);
    border-color: var(--elite-cyan);
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.2);
}

.category-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--elite-cyan));
}

.category-text strong {
    display: block;
    color: var(--elite-cyan);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.category-text p {
    color: var(--elite-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    background: rgba(21, 21, 32, 0.8);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.step-number {
    background: linear-gradient(45deg, var(--elite-gold), var(--elite-cyan));
    color: var(--elite-black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 0 20px var(--elite-gold);
}

.step-content h4 {
    color: var(--elite-cyan);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', monospace;
}

.step-content p {
    color: var(--elite-gray);
    line-height: 1.6;
}

.vision-commitment {
    background: linear-gradient(145deg,
        rgba(255, 215, 0, 0.1),
        rgba(0, 191, 255, 0.1));
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    border: 2px solid var(--elite-gold);
    text-align: center;
}

.commitment-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--elite-white);
}

/* Elite Footer */
.elite-footer {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--elite-gray);
    opacity: 0.8;
}

.elite-footer span {
    background: linear-gradient(45deg, var(--elite-purple), var(--elite-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Top Box Special Styles */
.top-box-special {
    position: relative;
    background: linear-gradient(145deg,
        rgba(255, 215, 0, 0.2),
        rgba(108, 92, 231, 0.3),
        rgba(0, 191, 255, 0.2));
    border: 3px solid var(--elite-gold);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(108, 92, 231, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    animation: topBoxPulse 2s ease-in-out infinite alternate;
}

@keyframes topBoxPulse {
    0% {
        box-shadow:
            0 0 30px rgba(255, 215, 0, 0.5),
            0 0 60px rgba(108, 92, 231, 0.3),
            inset 0 0 20px rgba(255, 215, 0, 0.1);
        transform: scale(1);
    }
    100% {
        box-shadow:
            0 0 50px rgba(255, 215, 0, 0.8),
            0 0 100px rgba(108, 92, 231, 0.5),
            inset 0 0 30px rgba(255, 215, 0, 0.2);
        transform: scale(1.05);
    }
}

.gif-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.top-box-gif {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(1.2) contrast(1.1) saturate(1.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Lightning Bolt Effects */
.lightning-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.lightning-bolt {
    position: absolute;
    background: linear-gradient(45deg, var(--elite-gold), var(--elite-cyan), var(--elite-white));
    opacity: 0;
    animation: lightningStrike 3s infinite;
}

.left-bolt {
    left: -10px;
    top: 20%;
    width: 4px;
    height: 60%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.right-bolt {
    right: -10px;
    top: 20%;
    width: 4px;
    height: 60%;
    transform: rotate(15deg);
    animation-delay: 0.5s;
}

.top-bolt {
    top: -10px;
    left: 20%;
    width: 60%;
    height: 4px;
    transform: rotate(-5deg);
    animation-delay: 1s;
}

.bottom-bolt {
    bottom: -10px;
    left: 20%;
    width: 60%;
    height: 4px;
    transform: rotate(5deg);
    animation-delay: 1.5s;
}

@keyframes lightningStrike {
    0%, 90%, 100% {
        opacity: 0;
        transform: scale(0.5);
        box-shadow: none;
    }
    5%, 15% {
        opacity: 1;
        transform: scale(1);
        box-shadow:
            0 0 10px var(--elite-gold),
            0 0 20px var(--elite-cyan),
            0 0 30px var(--elite-white);
    }
    10% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

/* Enhanced hover effects for top box */
.top-box-special:hover {
    animation-duration: 1s;
    transform: scale(1.1);
    border-color: var(--elite-cyan);
}

.top-box-special:hover .lightning-bolt {
    animation-duration: 1.5s;
}

.top-box-special:hover .top-box-gif {
    filter: brightness(1.4) contrast(1.2) saturate(1.5);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

/* Connection Effects Between Side Boxes and Center Boxes */
.connection-source {
    position: relative;
    cursor: pointer;
}

.connection-source::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--elite-gold), var(--elite-cyan));
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 5;
    box-shadow: 0 0 10px var(--elite-cyan);
}

.elite-left-section .connection-source::after {
    right: -3rem;
    transform-origin: left center;
}

.elite-right-section .connection-source::after {
    left: -3rem;
    transform-origin: right center;
}

.connection-source:hover::after {
    width: 3rem;
    opacity: 1;
    animation: connectionPulse 1.5s infinite;
}

@keyframes connectionPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.6; transform: scaleY(1.5); }
}

.connection-target {
    transition: all 0.5s ease;
}

.connection-target.connected {
    border-color: var(--elite-gold);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(0, 191, 255, 0.4);
    animation: targetGlow 2s infinite;
}

@keyframes targetGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(0, 191, 255, 0.4);
    }
    50% {
        box-shadow:
            0 0 50px rgba(255, 215, 0, 0.9),
            0 0 100px rgba(0, 191, 255, 0.6);
    }
}

/* Updated symbols for connection sources */
.connection-source .mystery-symbol {
    font-size: 2rem;
    animation: symbolPulse 2s ease-in-out infinite;
}

@keyframes symbolPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* GIF Box Special Styles */
.gif-box-special {
    position: relative;
    background: linear-gradient(145deg,
        rgba(255, 215, 0, 0.2),
        rgba(108, 92, 231, 0.3),
        rgba(0, 191, 255, 0.2));
    border: 3px solid var(--elite-cyan);
    box-shadow:
        0 0 30px rgba(0, 191, 255, 0.5),
        0 0 60px rgba(108, 92, 231, 0.3),
        inset 0 0 20px rgba(0, 191, 255, 0.1);
    animation: gifBoxPulse 2.5s ease-in-out infinite alternate;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gifBoxPulse {
    0% {
        box-shadow:
            0 0 30px rgba(0, 191, 255, 0.5),
            0 0 60px rgba(108, 92, 231, 0.3),
            inset 0 0 20px rgba(0, 191, 255, 0.1);
        transform: scale(1);
    }
    100% {
        box-shadow:
            0 0 50px rgba(0, 191, 255, 0.8),
            0 0 100px rgba(108, 92, 231, 0.5),
            inset 0 0 30px rgba(0, 191, 255, 0.2);
        transform: scale(1.03);
    }
}

.gif-box-special:hover {
    animation-duration: 1.2s;
    transform: scale(1.08);
    border-color: var(--elite-gold);
}

.gif-box-special .top-box-gif {
    cursor: pointer;
}

.gif-box-special:hover .top-box-gif {
    filter: brightness(1.3) contrast(1.1) saturate(1.4);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
}/* === V6 PYRAMID LAYOUT STYLES === */

/* Container */
.elite-pyramid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin: 4rem 0 6rem 0;
    perspective: 1000px;
}

/* Pyramid Levels */
.pyramid-level {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.pyramid-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* Level 1: Top (1 largest box) */
.pyramid-level-1 {
    gap: 4rem;
}

/* Level 2: Middle (2 large boxes) */
.pyramid-level-2 .pyramid-center {
    gap: 3rem;
}

/* Level 3: Middle (3 medium boxes) */
.pyramid-level-3 .pyramid-center {
    gap: 2.5rem;
}

/* Level 4: Bottom (6 small boxes) */
.pyramid-level-4 .pyramid-center {
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

/* === V6 MYSTERY BOX SIZES === */
/* Top Level: Biggest (Seviye 10 - En çok önerilen) */
.elite-mystery-box-largest {
    width: 280px;
    height: 280px;
    border: 5px solid var(--elite-gold);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(0, 191, 255, 0.1));
}

/* All Other Levels: Same Size (Seviye 9) */
.elite-mystery-box-large,
.elite-mystery-box-medium,
.elite-mystery-box-small {
    width: 160px;
    height: 160px;
    border: 3px solid var(--elite-cyan);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(108, 92, 231, 0.1));
}

/* === BASE MYSTERY BOX STYLES === */
.elite-mystery-box {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.elite-mystery-box:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.2) saturate(1.3);
}

/* GIF Container */
.mystery-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 11px;
}

.mystery-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 11px;
}

/* Lightning Aura */
.lightning-aura {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg,
        rgba(255, 215, 0, 0.4),
        rgba(0, 191, 255, 0.4),
        rgba(255, 215, 0, 0.4)
    );
    border-radius: 50%;
    animation: lightningPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes lightningPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

/* === V6 ENHANCED DESCRIPTIONS === */
.pyramid-description {
    display: flex;
    align-items: center;
    min-width: 200px;
}

.pyramid-description.left {
    justify-content: flex-end;
    text-align: right;
}

.pyramid-description.right {
    justify-content: flex-start;
    text-align: left;
}

.desc-text {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--elite-gold);
    background: rgba(11, 11, 15, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--elite-gold);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(15px);
    max-width: 200px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.desc-text.horizontal {
    text-align: center;
    font-size: 0.85rem;
    padding: 0.9rem 1.3rem;
}

/* Admin Verified Style */
.desc-text.admin-verified {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    border-color: var(--elite-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: adminGlow 3s ease-in-out infinite;
}

@keyframes adminGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.7); }
}

/* Support Available Style */
.desc-text.support-available {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.15), rgba(108, 92, 231, 0.1));
    border-color: var(--elite-cyan);
    color: var(--elite-cyan);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
    animation: supportGlow 3s ease-in-out infinite;
}

@keyframes supportGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 191, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 191, 255, 0.7); }
}

/* Lightning Connectors */
.lightning-connector {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        var(--elite-gold),
        var(--elite-cyan),
        var(--elite-gold),
        transparent
    );
    position: relative;
    animation: lightningFlow 3s ease-in-out infinite;
    border-radius: 2px;
}

.left-lightning {
    margin-left: 20px;
}

.right-lightning {
    margin-right: 20px;
}

@keyframes lightningFlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; box-shadow: 0 0 15px var(--elite-gold); }
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .elite-pyramid-container {
        gap: 2rem;
        margin: 2rem 0 3rem 0;
    }

    .pyramid-level-1 {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pyramid-level-2 .pyramid-center {
        gap: 2rem;
    }

    .pyramid-level-3 .pyramid-center {
        gap: 1.5rem;
    }

    .pyramid-level-4 .pyramid-center {
        gap: 1rem;
        max-width: 100%;
        justify-content: center;
    }

    .pyramid-description {
        min-width: auto;
        text-align: center;
    }

    .desc-text {
        max-width: 250px;
        font-size: 0.8rem;
        padding: 0.8rem 1.1rem;
    }

    .desc-text.horizontal {
        max-width: 200px;
        font-size: 0.75rem;
    }

    .lightning-connector {
        display: none;
    }

    /* Mobile Box Sizes */
    .elite-mystery-box-largest {
        width: 200px;
        height: 200px;
    }

    .elite-mystery-box-large,
    .elite-mystery-box-medium,
    .elite-mystery-box-small {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .pyramid-level-4 .pyramid-center {
        gap: 0.8rem;
    }

    .elite-mystery-box-large,
    .elite-mystery-box-medium,
    .elite-mystery-box-small {
        width: 100px;
        height: 100px;
    }
}

/* ============================================ */
/* V10 FINAL FIX - 2-4-6 PYRAMID + GIF FIX */
/* ============================================ */

/* V10 Pyramid Layout - Using V7 working structure */
.pyramid-level-1 .pyramid-center {
    gap: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pyramid-level-2 .pyramid-center {
    gap: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pyramid-level-3 .pyramid-center {
    gap: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 900px;
}

/* V10 Box Sizes - Level 1: 200x200, Others: 160x160 */
.elite-mystery-box-largest {
    width: 200px !important;
    height: 200px !important;
    min-width: 200px !important;
    min-height: 200px !important;
}

.elite-mystery-box-large,
.elite-mystery-box-medium {
    width: 160px !important;
    height: 160px !important;
    min-width: 160px !important;
    min-height: 160px !important;
}

/* V10 GIF Display - Direct copy from working V7 */
.mystery-gif {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 11px !important;
    position: relative !important;
    z-index: 10 !important;
}

.mystery-link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    border-radius: 11px !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* V10 Lightning Aura */
.lightning-aura {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg,
        rgba(255, 215, 0, 0.4),
        rgba(0, 191, 255, 0.4),
        rgba(255, 215, 0, 0.4)
    );
    border-radius: 50%;
    animation: lightningPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes lightningPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

/* V10 Footer Fix - Static positioning */
.elite-footer {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 4rem !important;
    padding: 2rem 0 !important;
    text-align: center !important;
    z-index: 100;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--elite-gray);
    opacity: 0.8;
    width: 100%;
}

/* V10 Mobile Responsive */
@media (max-width: 768px) {
    .elite-mystery-box-largest {
        width: 150px !important;
        height: 150px !important;
        min-width: 150px !important;
        min-height: 150px !important;
    }

    .elite-mystery-box-large,
    .elite-mystery-box-medium {
        width: 110px !important;
        height: 110px !important;
        min-width: 110px !important;
        min-height: 110px !important;
    }

    .pyramid-level-1 .pyramid-center,
    .pyramid-level-2 .pyramid-center,
    .pyramid-level-3 .pyramid-center {
        flex-wrap: wrap;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .elite-mystery-box-largest {
        width: 120px !important;
        height: 120px !important;
    }

    .elite-mystery-box-large,
    .elite-mystery-box-medium {
        width: 90px !important;
        height: 90px !important;
    }
}


/* Red Border for Level 2 Boxes */
.box-red-border {
    border: 3px solid #DC143C !important;
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.6) !important;
}

.box-red-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 3px;
    background: linear-gradient(45deg,
        #DC143C,
        #FF0000,
        #DC143C,
        #8B0000);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    animation: redBorderRotate 4s linear infinite;
    z-index: -1;
}

@keyframes redBorderRotate {
    0% {
        background: linear-gradient(0deg, #DC143C, #FF0000, #DC143C, #8B0000);
    }
    25% {
        background: linear-gradient(90deg, #FF0000, #DC143C, #8B0000, #DC143C);
    }
    50% {
        background: linear-gradient(180deg, #DC143C, #8B0000, #DC143C, #FF0000);
    }
    75% {
        background: linear-gradient(270deg, #8B0000, #DC143C, #FF0000, #DC143C);
    }
    100% {
        background: linear-gradient(360deg, #DC143C, #FF0000, #DC143C, #8B0000);
    }
}
