.monolit-sahne {
    --mono-altin: #C5A059;
    --mono-koyu: #0F172A;
    --mono-gri: #64748B;
    --mono-cam: rgba(255, 255, 255, 0.85);
    --mono-zemin: #FFFFFF; 
    
    position: relative;
    height: 100vh;
    min-height: 800px;
    background-color: var(--mono-zemin);
    
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sahne-derinlik {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.altin-veri-yagmuru {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(197, 160, 89, 0.15) 1px, transparent 1px);
    background-size: 100% 60px;
    animation: veriYagisi 4s linear infinite;
    opacity: 0.6;
}

@keyframes veriYagisi {
    from { background-position: 0 0; }
    to { background-position: 0 60px; }
}

.zaman-yansima {
    position: absolute;
    bottom: -20%;
    left: -50%;
    width: 200%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    transform: rotateX(60deg);
    filter: blur(40px);
}

.sis-katmani {
    position: absolute;
    width: 100%;
    height: 100%;
    
    background: radial-gradient(circle at 50% 50%, transparent 40%, var(--mono-zemin) 90%);
    z-index: 2;
}

.monolit-konteyner {
    position: relative;
    z-index: 5;
    transform-style: preserve-3d;
}

.doken-prizma {
    position: relative;
    width: 280px;
    height: 480px;
    transform-style: preserve-3d;
    animation: monolitDonus 25s linear infinite;
}

@keyframes monolitDonus {
    0% { transform: rotateY(0deg) rotateX(5deg); }
    100% { transform: rotateY(360deg) rotateX(5deg); }
}

.prizma-yuz {
    position: absolute;
    width: 280px;
    height: 480px;
    
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248, 250, 252, 0.95));
    border: 1px solid rgba(197, 160, 89, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        inset 0 0 40px rgba(255,255,255,0.9),
        0 10px 40px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(10px);
}

.yuz-on { transform: rotateY(0deg) translateZ(140px); }
.yuz-sag { transform: rotateY(120deg) translateZ(140px); }
.yuz-sol { transform: rotateY(240deg) translateZ(140px); }

.yuz-icerik {
    text-align: center;
    color: var(--mono-koyu);
    backface-visibility: hidden;
}

.dev-rakam {
    font-family: 'Cormorant Garamond', serif;
    font-size: 9rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    background: linear-gradient(to bottom, var(--mono-altin), #92400E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(197, 160, 89, 0.2));
}

.yuz-baslik {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1.3;
    display: block;
    margin-top: 15px;
    color: var(--mono-koyu);
}

.yuz-ikon {
    width: 110px;
    height: 110px;
    margin-bottom: 25px;
    color: var(--mono-altin);
    filter: drop-shadow(0 5px 10px rgba(197, 160, 89, 0.3));
}

.prizma-cekirdek {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 350px;
    background: var(--mono-altin);
    filter: blur(70px);
    opacity: 0.2;
    animation: corePulse 3s infinite alternate;
}

@keyframes corePulse {
    0% { opacity: 0.15; transform: translate(-50%, -50%) scaleY(0.9); }
    100% { opacity: 0.3; transform: translate(-50%, -50%) scaleY(1.1); }
}

.hud-katmani {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.hud-nokta {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.hud-nokta:hover {
    transform: scale(1.05);
}

.sol-ust { top: 22%; left: 12%; text-align: right; flex-direction: row-reverse; }
.sag-ust { top: 28%; right: 12%; }
.sol-alt { bottom: 28%; left: 15%; text-align: right; flex-direction: row-reverse; }
.sag-alt { bottom: 22%; right: 10%; }

.hud-cizgi {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mono-altin));
    position: relative;
}

.sol-ust .hud-cizgi, .sol-alt .hud-cizgi {
    background: linear-gradient(90deg, var(--mono-altin), transparent);
}

.hud-cizgi::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--mono-altin);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--mono-altin);
}

.sag-ust .hud-cizgi::after, .sag-alt .hud-cizgi::after { left: 0; }
.sol-ust .hud-cizgi::after, .sol-alt .hud-cizgi::after { right: 0; }

.hud-metin strong {
    display: block;
    color: var(--mono-koyu);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 800;
}

.hud-metin small {
    color: var(--mono-gri);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.sahne-alt-yazi {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: var(--mono-gri);
    letter-spacing: 4px;
    font-size: 0.75rem;
    z-index: 10;
    font-weight: 700;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .doken-prizma {
        transform: scale(0.8);
    }
    
    .hud-nokta {
        position: relative;
        top: auto; bottom: auto; left: auto; right: auto;
        margin: 25px auto;
        justify-content: center;
        text-align: center;
        flex-direction: column !important;
        
        background: rgba(255,255,255,0.9);
        padding: 15px;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        width: 80%;
        border: 1px solid rgba(197, 160, 89, 0.2);
    }
    
    .hud-cizgi { display: none; }
    
    .hud-katmani {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 40px 0;
        position: absolute;
        top: 0;
    }
}

@media (max-width: 768px) {
    .monolit-sahne { height: auto; padding: 120px 0; display: block; }
    .monolit-konteyner { height: 550px; display: flex; justify-content: center; align-items: center; }
    
    .hud-katmani {
        position: relative;
        display: flex;
        flex-direction: column;
        height: auto;
        margin-top: 20px;
    }
}