* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #080808;
    --deep: #0d0b0c;
    --white: #eeeae6;
    --muted: #827b77;
    --line: rgba(255,255,255,0.10);
    --accent: #d5aaaa;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;

    background: var(--black);
    color: var(--white);

    font-family: "Inter", sans-serif;
}

button {
    font-family: inherit;
}


/* ================================================= */
/* AÇILIŞ */
/* ================================================= */

.intro-screen {
    position: fixed;
    inset: 0;
    z-index: 1000;

    width: 100%;
    height: 100dvh;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(170,120,120,0.10),
            transparent 35%
        ),
        #090909;

    transition:
        opacity 1.1s ease,
        visibility 1.1s ease;
}

.intro-screen.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* hafif arka plan ışıkları */

.intro-background {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.intro-background::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.025),
            transparent 50%
        );
}

.glow {
    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.08;
}

.glow-1 {
    top: -120px;
    right: -100px;
    background: #d6a5a5;
}

.glow-2 {
    bottom: -150px;
    left: -120px;
    background: #7d8ca8;
}


/* ================================================= */
/* SAHTE HEADER */
/* ================================================= */

.fake-header {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 76px;

    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.company {
    display: flex;
    align-items: center;
    gap: 11px;
}

.company-mark {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.20);

    font-size: 9px;
    letter-spacing: 1.5px;

    color: #c2bcb8;
}

.company-name {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.company-name strong {
    font-size: 8px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.company-name span {
    font-size: 5.5px;
    letter-spacing: 1.5px;
    color: #625d59;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 6px;
    letter-spacing: 1.5px;

    color: #625d59;
}

.status-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #879987;
    box-shadow: 0 0 9px rgba(135,153,135,0.7);
}


/* ================================================= */
/* PORTAL */
/* ================================================= */

.fake-portal {
    position: absolute;

    left: 25px;
    right: 25px;

    top: 50%;

    transform: translateY(-50%);

    animation: portalAppear 1.2s ease forwards;
}

.portal-label {
    display: block;

    margin-bottom: 22px;

    font-size: 7px;
    letter-spacing: 3px;

    color: #69635f;
}

.fake-portal h1 {
    font-size: 48px;
    line-height: 0.98;

    font-weight: 300;

    letter-spacing: -2.8px;

    color: #e8e3df;
}

.fake-portal h1 em {
    font-family: "Playfair Display", serif;
    font-weight: 400;

    color: #c5beba;
}

.fake-portal p {
    max-width: 280px;

    margin-top: 25px;

    font-size: 11px;
    line-height: 1.8;

    color: #716b67;
}

.portal-button {
    width: 100%;
    height: 70px;

    margin-top: 38px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(10, 12, 15, 0.82);

    border: 1px solid rgba(255, 255, 255, 0.45);

    color: #ffffff;

    font-size: 8px;
    letter-spacing: 2px;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.portal-button:hover {
    background: rgba(10, 12, 15, 0.92);
    transform: translateY(-2px);
}

.portal-button:active {
    transform: scale(0.98);
}

.portal-button:active {
    transform: scale(0.98);

    background: rgba(255,255,255,0.08);
}

.portal-button .arrow {
    font-size: 18px;
}

.fake-footer {
    position: absolute;

    bottom: 24px;

    left: 22px;
    right: 22px;

    display: flex;
    justify-content: space-between;

    font-size: 5.5px;
    letter-spacing: 2px;

    color: #45413e;
}

@keyframes portalAppear {

    from {
        opacity: 0;
        transform: translateY(calc(-50% + 18px));
    }

    to {
        opacity: 1;
        transform: translateY(-50%);
    }

}


/* ================================================= */
/* LOADING */
/* ================================================= */

.loading-screen {
    position: fixed;
    inset: 0;

    z-index: 900;

    width: 100%;
    height: 100dvh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #090909;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.loading-screen.active {
    opacity: 1;
    visibility: visible;
}

.loading-center {
    width: calc(100% - 70px);

    text-align: center;
}

.loading-small {
    font-size: 7px;
    letter-spacing: 3px;

    color: #5f5955;
}

.loading-number {
    margin: 18px 0 25px;

    font-family: "Playfair Display", serif;

    font-size: 15px;
    font-weight: 400;

    color: #ddd7d2;
}

.loading-line {
    width: 100%;
    height: 1px;

    background: rgba(255,255,255,0.10);
}

#loadingProgress {
    width: 0%;
    height: 100%;

    background: #c9aaa8;
}

#loadingText {
    margin-top: 16px;

    font-size: 7px;
    letter-spacing: 1.5px;

    color: #625c58;
}


/* ================================================= */
/* ANA SİTE */
/* ================================================= */

#mainSite {
    width: 100%;

    opacity: 0;
    visibility: hidden;

    transition: opacity 1.5s ease;
}

#mainSite.visible {
    opacity: 1;
    visibility: visible;
}


/* ================================================= */
/* HERO */
/* ================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100dvh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(190,140,140,0.10),
            transparent 42%
        ),
        #0b0a0a;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            rgba(255,255,255,0.16) 1px,
            transparent 1px
        );

    background-size: 75px 75px;

    opacity: 0.06;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 88%;

    text-align: center;

    animation: heroIn 1.8s ease forwards;
}

.hero-overline {
    display: block;

    margin-bottom: 30px;

    font-size: 7px;
    letter-spacing: 4px;

    color: #817874;
}

.hero h2 {
    font-size: 55px;
    line-height: 0.94;

    font-weight: 300;

    letter-spacing: -3px;
}

.hero h2 em {
    font-family: "Playfair Display", serif;

    font-weight: 400;

    color: #d0aaa8;
}

.hero p {
    margin-top: 30px;

    font-family: "Playfair Display", serif;

    font-size: 15px;
    font-style: italic;

    color: #827a76;
}

.scroll-indicator {
    margin-top: 80px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 3px;

    color: #5e5754;
}

.scroll-indicator div {
    width: 1px;
    height: 42px;

    background: linear-gradient(
        to bottom,
        #817876,
        transparent
    );
}





/* ================================================= */
/* SAYAÇ */
/* ================================================= */

.counter-section {
    padding: 115px 22px;

    background: #0e0c0d;

    text-align: center;
}

.section-container {
    width: 100%;
}

.section-label {
    display: block;

    font-size: 7px;
    letter-spacing: 3px;

    color: #716965;
}

.counter-section h3 {
    margin-top: 24px;

    font-size: 44px;
    line-height: 0.98;

    font-weight: 300;

    letter-spacing: -2.5px;
}

.counter-section h3 em {
    font-family: "Playfair Display", serif;

    color: #d0aaa8;
}

.counter {
    margin-top: 60px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.counter-item {
    min-height: 115px;

    padding: 27px 8px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.counter-item:nth-child(5) {
    grid-column: 1 / 3;
}

.counter-item strong {
    font-size: 33px;
    line-height: 1;

    font-weight: 300;

    letter-spacing: -1px;
}

.counter-item span {
    margin-top: 9px;

    font-size: 6px;
    letter-spacing: 2px;

    color: #625b57;
}

.counter-note {
    margin-top: 25px;

    font-family: "Playfair Display", serif;

    font-size: 13px;
    font-style: italic;

    color: #716965;
}


/* ================================================= */
/* FOTOĞRAFLAR */
/* ================================================= */

.memories-section {
    padding: 120px 22px;

    background: #0a0909;
}

.memories-section h3 {
    margin-top: 24px;

    font-size: 45px;
    line-height: 0.96;

    font-weight: 300;

    letter-spacing: -2.5px;
}

.memories-section h3 em {
    font-family: "Playfair Display", serif;

    color: #c9aaa8;
}

.section-description {
    margin-top: 27px;

    max-width: 310px;

    font-size: 11px;
    line-height: 1.9;

    color: #716a66;
}


/* FOTOĞRAF GRID */

.photo-grid {
    margin-top: 70px;

    display: flex;
    flex-direction: column;

    gap: 45px;
}

.photo-card {
    width: 100%;
}

.photo-inner {
    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #141212;
}

.photo-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(0.78);

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.photo-card:active img {
    transform: scale(1.025);
    filter: saturate(1);
}

.photo-number {
    display: block;

    margin-top: 11px;

    font-size: 6px;
    letter-spacing: 3px;

    color: #514b48;
}


/* ================================================= */
/* MESAJ */
/* ================================================= */

.message-section {
    position: relative;

    min-height: 100dvh;

    padding: 120px 22px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #100d0e;
}

.message-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(180,120,120,0.09),
            transparent 65%
        );

    filter: blur(20px);
}

.message-container {
    position: relative;
    z-index: 2;

    width: 100%;
}

.message-mark {
    margin-top: 38px;

    font-family: "Playfair Display", serif;

    font-size: 85px;
    line-height: 0.5;

    color: #9e7777;
}

.message-container h3 {
    margin-top: 35px;

    font-size: 47px;
    line-height: 0.95;

    font-weight: 300;

    letter-spacing: -2.5px;
}

.love-message {
    margin-top: 42px;

    font-family: "Playfair Display", serif;

    font-size: 16px;
    line-height: 1.9;

    color: #a69c97;
}


/* ================================================= */
/* FINAL */
/* ================================================= */

.final-section {
    min-height: 90dvh;

    padding: 80px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #080707;
}

.final-content {
    width: 100%;
}

.final-small {
    font-size: 7px;
    letter-spacing: 4px;

    color: #655e5a;
}

.final-content h3 {
    margin-top: 27px;

    font-size: 82px;
    line-height: 0.82;

    font-weight: 300;

    letter-spacing: -5px;
}

.final-content h3 em {
    font-family: "Playfair Display", serif;

    color: #d0aaa8;
}

.final-content p {
    margin-top: 38px;

    font-family: "Playfair Display", serif;

    font-size: 14px;
    font-style: italic;

    color: #756e6a;
}

.heart-line {
    margin-top: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
}

.heart-line span {
    width: 55px;
    height: 1px;

    background: #302a29;
}

.heart-line div {
    font-family: "Playfair Display", serif;

    font-size: 22px;

    color: #c59e9c;
}


/* ================================================= */
/* FOOTER */
/* ================================================= */

.main-footer {
    padding: 25px 22px;

    display: flex;
    justify-content: space-between;

    background: #070606;

    font-size: 5.5px;
    letter-spacing: 2px;

    color: #47413e;
}


/* ================================================= */
/* ÇOK KÜÇÜK TELEFONLAR */
/* ================================================= */

@media (max-width: 360px) {

    .fake-portal h1 {
        font-size: 43px;
    }

    .hero h2 {
        font-size: 48px;
    }

    .counter-section h3 {
        font-size: 39px;
    }

    .memories-section h3 {
        font-size: 40px;
    }

    .message-container h3 {
        font-size: 42px;
    }

    .final-content h3 {
        font-size: 72px;
    }

}
/* ================================================= */
/* HERO - HAREKETLİ KALPLER */
/* ================================================= */

.floating-heart {
    position: absolute;
    z-index: 1;

    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #d7a7aa;

    opacity: 0.65;

    pointer-events: none;

    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}


/* 1. kalp */

.heart-1 {
    top: 24%;
    left: 14%;

    font-size: 17px;

    animation: heartOne 4.8s infinite;
}


/* 2. kalp */

.heart-2 {
    top: 31%;
    right: 13%;

    font-size: 24px;

    animation: heartTwo 6.2s infinite;
}


/* 3. kalp */

.heart-3 {
    top: 53%;
    left: 9%;

    font-size: 13px;

    animation: heartThree 5.4s infinite;
}


/* 4. kalp */

.heart-4 {
    top: 61%;
    right: 10%;

    font-size: 18px;

    animation: heartFour 7s infinite;
}


/* 5. kalp */

.heart-5 {
    top: 72%;
    left: 24%;

    font-size: 11px;

    animation: heartFive 4.3s infinite;
}


/* 6. kalp */

.heart-6 {
    top: 77%;
    right: 25%;

    font-size: 14px;

    animation: heartSix 5.8s infinite;
}


/* ================================================= */
/* BAĞIMSIZ HAREKETLER */
/* ================================================= */

@keyframes heartOne {

    0%, 100% {
        transform: translate(0, 0) rotate(-8deg);
    }

    50% {
        transform: translate(12px, -22px) rotate(8deg);
    }

}


@keyframes heartTwo {

    0%, 100% {
        transform: translate(0, 0) rotate(7deg);
    }

    50% {
        transform: translate(-15px, 18px) rotate(-8deg);
    }

}


@keyframes heartThree {

    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(18px, -13px);
    }

}


@keyframes heartFour {

    0%, 100% {
        transform: translate(0, 0) rotate(-5deg);
    }

    50% {
        transform: translate(-20px, -15px) rotate(10deg);
    }

}


@keyframes heartFive {

    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -20px);
    }

}


@keyframes heartSix {

    0%, 100% {
        transform: translate(0, 0) rotate(5deg);
    }

    50% {
        transform: translate(-12px, 16px) rotate(-5deg);
    }

}
/* ================================================= */
/* AŞK OYUNU */
/* ================================================= */

.love-game {
    position: relative;

    min-height: 100dvh;

    padding: 110px 20px;

    background: #0c0a0b;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.game-intro {
    width: 100%;

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.game-intro.hide {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.game-intro h3 {
    margin-top: 25px;

    font-size: 45px;
    line-height: 0.95;

    font-weight: 300;

    letter-spacing: -2px;
}

.game-intro h3 em {
    font-family: "Playfair Display", serif;

    color: #d2aaaa;
}

.game-intro p {
    margin-top: 25px;

    font-family: "Playfair Display", serif;

    font-size: 15px;
    font-style: italic;

    color: #827875;
}

#startGame {
    margin-top: 40px;

    width: 190px;
    height: 52px;

    background: transparent;

    border: 1px solid rgba(215,167,170,0.45);

    color: #d5b4b4;

    font-size: 7px;

    letter-spacing: 3px;

    transition:
        background 0.3s ease,
        transform 0.2s ease;
}

#startGame:active {
    transform: scale(0.95);

    background: rgba(215,167,170,0.10);
}


/* OYUN ALANI */

.game-area {
    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.6s ease;
}

.game-area.active {
    opacity: 1;
    visibility: visible;
}

.game-counter {
    position: absolute;

    top: 35px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 10;

    font-size: 9px;

    letter-spacing: 3px;

    color: #776d69;
}

#heartContainer {
    position: absolute;

    inset: 0;
}


/* YAKALANACAK KALP */

.game-heart {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    color: #e0aeb0;

    font-size: 27px;

    cursor: pointer;

    user-select: none;

    -webkit-tap-highlight-color: transparent;

    animation:
        gameHeartFloat 2.8s ease-in-out infinite;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.game-heart:active {
    transform: scale(1.5);
}

@keyframes gameHeartFloat {

    0%, 100% {
        margin-top: 0;
    }

    50% {
        margin-top: -15px;
    }

}


/* YAKALANDIĞINDA */

.game-heart.caught {
    opacity: 0;

    transform: scale(2);

    pointer-events: none;
}


/* ================================================= */
/* OYUN SONU */
/* ================================================= */

.game-result {
    position: absolute;

    inset: 0;

    z-index: 20;

    padding: 30px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(185,125,130,0.13),
            transparent 55%
        ),
        #0c0a0b;

    opacity: 0;
    visibility: hidden;

    transform: scale(0.92);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

.game-result.show {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}

.result-heart {
    font-family: "Playfair Display", serif;

    font-size: 55px;

    color: #d6a4a7;

    animation:
        resultHeart 1.8s ease-in-out infinite;
}

@keyframes resultHeart {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

}

.game-result h3 {
    margin-top: 30px;

    font-size: 42px;

    font-weight: 300;

    letter-spacing: -2px;

    color: #eee7e3;
}

.game-result p {
    margin-top: 22px;

    font-family: "Playfair Display", serif;

    font-size: 25px;

    line-height: 1.25;

    color: #d7aaaa;
}

.game-result span {
    margin-top: 35px;

    font-size: 8px;

    letter-spacing: 3px;

    color: #69615e;
}
.intro-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    z-index: 0;
}

.intro-screen > *:not(.intro-image) {
    position: relative;
    z-index: 1;
}