:root {
    --bg: #0b120e;
    --panel: #111a14;
    --panel-soft: #18241c;
    --text: #ffffff;
    --muted: #94a3b8;
    --line: rgba(0, 230, 118, 0.14);
    --green: #00e676;
    --green-light: #ffffff;
    --green-dark: #00c853;
    --green-glow: rgba(0, 230, 118, 0.4);
    --orange: #00e676;
    --orange-light: #ffffff;
    --orange-dark: #00c853;
    --orange-glow: rgba(0, 230, 118, 0.4);
    --gradient: linear-gradient(135deg, #00e676, #ffffff, #00c853, #00e676);
    --radius: 20px;
    --container: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Splash â€” 3 sn sallanan logo */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-screen.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-logo {
    width: min(72vw, 280px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px var(--orange-glow));
    animation: logoShake 0.55s ease-in-out infinite;
}

@keyframes logoShake {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    15% {
        transform: translate(-4px, -6px) rotate(-3deg) scale(1.02);
    }

    30% {
        transform: translate(4px, 4px) rotate(3deg) scale(0.98);
    }

    45% {
        transform: translate(-3px, 5px) rotate(-2deg) scale(1.01);
    }

    60% {
        transform: translate(5px, -4px) rotate(2deg) scale(0.99);
    }

    75% {
        transform: translate(-2px, 2px) rotate(-1deg) scale(1);
    }
}

body.splash-active .page-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-content {
    transition: opacity 0.6s ease 0.1s;
}

body:not(.splash-active) .page-content {
    opacity: 1;
    visibility: visible;
}

/* Ãœst ortalÄ± logo */
.brand-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0 4px;
}

.brand-logo-top {
    width: min(85vw, 320px);
    height: auto;
    max-height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 28px var(--orange-glow));
}

#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(0, 230, 118, 0.15), transparent 55%),
        radial-gradient(ellipse 60% 40% at 85% 75%, rgba(255, 255, 255, 0.07), transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(0, 200, 83, 0.12), transparent 45%);
    animation: meshShift 18s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05) translate(-1%, 1%);
        opacity: 1;
    }

    100% {
        transform: scale(1.02) translate(1%, -1%);
        opacity: 0.85;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 24px, var(--container));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.wrapper {
    padding: 16px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* YouTube â€” header ile sponsorlar arasÄ±nda */
.video-zone {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.video-zone.is-active {
    display: flex;
}

.video-zone-label {
    margin-bottom: 2px;
}

.video-panel-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.video-panel-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 107, 0, 0.25);
}

.video-panel-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* YayÄ±na Ã¶zel kod */
.promo-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 18px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px dashed rgba(255, 107, 0, 0.35);
    text-align: center;
}

.promo-code-value {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    font-weight: 900;
    letter-spacing: 0.14em;
    color: var(--orange);
    text-shadow: 0 0 32px var(--orange-glow);
    font-family: "Plus Jakarta Sans", monospace, system-ui, sans-serif;
}


.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    padding: 11px 22px;
    border: 1px solid rgba(255, 107, 0, 0.4);
    border-radius: 10px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--orange-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.copy-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-1px);
}

.copy-btn.is-copied {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
    color: #81c784;
}

.copy-btn--icon {
    min-width: 0;
    width: 46px;
    height: 46px;
    padding: 0;
    flex-shrink: 0;
    border-radius: 12px;
}

.copy-btn-icon {
    width: 20px;
    height: 20px;
}

.copy-btn-icon--check {
    display: none;
}

.copy-btn.is-copied .copy-btn-icon--copy {
    display: none;
}

.copy-btn.is-copied .copy-btn-icon--check {
    display: block;
}

/* Connect card â€” logo + tagline + telegram */
.connect-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.connect-card-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.18), transparent 70%);
    pointer-events: none;
}

.connect-card-inner {
    position: relative;
    z-index: 1;
    padding: 24px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.connect-logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 8px 12px 4px;
}

.connect-logo {
    width: min(80vw, 300px);
    height: auto;
    max-height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 0 32px var(--orange-glow));
}

.connect-tagline {
    color: var(--text);
    font-size: clamp(0.88rem, 3vw, 1rem);
    line-height: 1.6;
    max-width: 420px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.06);
    border: 1px solid rgba(255, 107, 0, 0.15);
}

.connect-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.connect-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.connect-btn-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.connect-btn-icon svg {
    width: 22px;
    height: 22px;
}

.connect-btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.connect-btn-text small {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.65;
}

.connect-btn-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.connect-btn--marketing {
    border-color: rgba(79, 195, 247, 0.25);
}

.connect-btn--marketing .connect-btn-icon {
    background: rgba(79, 195, 247, 0.12);
    color: #4fc3f7;
}

.connect-btn--marketing:hover {
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 0 10px 28px rgba(79, 195, 247, 0.15);
}

.connect-btn--group {
    border-color: rgba(255, 107, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), var(--panel-soft));
}

.connect-btn--group .connect-btn-icon {
    background: rgba(255, 107, 0, 0.18);
    color: var(--orange-light);
}

.connect-btn--group:hover {
    border-color: rgba(255, 107, 0, 0.55);
    box-shadow: 0 10px 28px var(--orange-glow);
}

.connect-btn--instagram .connect-btn-icon {
    background: rgba(244, 114, 182, 0.12);
    color: #f472b6;
}

.connect-btn[hidden] {
    display: none !important;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Sponsor zone */
.sponsor-zone {
    position: relative;
}

.sponsor-zone-head {
    margin-bottom: 18px;
}

.sponsor-zone-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sponsor-zone-line {
    width: 40px;
    height: 3px;
    border-radius: 99px;
    background: var(--gradient);
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    flex-shrink: 0;
}

.sponsor-zone-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
}

.sponsor-zone-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.sponsor-zone-title {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
}

.sponsor-zone-title em {
    font-style: normal;
    background: var(--gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease infinite;
}

.sponsor-zone-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.sponsor-zone-count {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
    color: var(--orange);
}

.sponsor-zone-count-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.sponsor-bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.sponsor-bento--vip {
    display: flex;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto;
}

.deal-card--vip-hero {
    width: 100%;
    min-height: 220px;
    border-color: rgba(255, 107, 0, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 107, 0, 0.12),
        0 16px 48px rgba(255, 107, 0, 0.1);
}

.deal-card--vip-hero .deal-body {
    min-height: 150px;
    padding: 28px 20px 16px;
}

.deal-card--vip-hero .deal-logo img {
    max-height: 96px;
    max-width: 72%;
}

.deal-card--vip-hero:hover {
    border-color: rgba(255, 107, 0, 0.55);
    box-shadow:
        0 0 0 1px rgba(255, 107, 0, 0.2),
        0 20px 56px rgba(255, 107, 0, 0.18);
}

.deal-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 170px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.deal-card--featured {
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.1);
}

.deal-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 0, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(255, 107, 0, 0.1);
}

.deal-shine {
    display: none;
}

.deal-body {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 14px 12px;
    min-height: 110px;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 107, 0, 0.07), transparent 70%);
}

.deal-index {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.18);
}

.deal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    max-width: calc(100% - 50px);
    padding: 4px 10px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: var(--gradient);
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-badge--vip {
    left: 12px;
    right: auto;
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #1a1a1a;
    font-weight: 900;
}

.deal-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-logo img {
    max-width: 75%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

.deal-card--featured .deal-logo img {
    max-height: 80px;
}

.deal-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 107, 0, 0.15);
}

.deal-foot-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.deal-foot-arrow {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--orange);
}

.deal-foot-arrow svg {
    width: 14px;
    height: 14px;
}

.deal-card:hover .deal-foot-text {
    color: var(--orange-light);
}

.deal-card:hover .deal-foot-arrow {
    background: var(--orange);
    color: #fff;
}

/* About zone */
.about-zone {
    position: relative;
    padding: 4px 0 8px;
}

.about-zone-head {
    margin-bottom: 20px;
}

.about-zone-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.about-zone-line {
    width: 40px;
    height: 3px;
    border-radius: 99px;
    background: var(--gradient);
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    flex-shrink: 0;
}

.about-zone-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
}

.about-zone-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    border-left: 3px solid var(--orange);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.about-item:hover {
    border-left-color: var(--orange-light);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.08);
    transform: translateX(4px);
}

.about-item-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--orange);
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.25);
}

.about-item-content {
    min-width: 0;
    flex: 1;
}

.about-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.about-item-text {
    color: var(--muted);
    font-size: clamp(0.82rem, 2.5vw, 0.9rem);
    line-height: 1.65;
}

/* Footer */
.site-footer {
    margin-top: auto;
    padding: 24px 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 2;
}

.site-footer span {
    color: var(--orange);
    font-weight: 700;
}

/* Entrance animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loaded .brand-hero {
    animation: fadeUp 0.55s ease forwards;
}

.loaded .video-zone.is-active {
    animation: fadeUp 0.5s ease 0.06s forwards;
    opacity: 0;
}

.loaded .sponsor-zone--promo {
    animation: fadeUp 0.5s ease 0.08s forwards;
    opacity: 0;
}

.loaded .sponsor-zone--vip {
    animation: fadeUp 0.5s ease 0.1s forwards;
    opacity: 0;
}

.loaded .sponsor-zone:not(.sponsor-zone--vip) {
    animation: fadeUp 0.5s ease 0.14s forwards;
    opacity: 0;
}

.loaded .connect-card {
    animation: fadeUp 0.5s ease 0.18s forwards;
    opacity: 0;
}

.loaded .about-zone {
    animation: fadeUp 0.5s ease 0.24s forwards;
    opacity: 0;
}

.loaded .deal-card {
    opacity: 0;
    animation: fadeUp 0.45s ease forwards;
    animation-delay: var(--delay, 0s);
}

@media (min-width: 768px) {
    .wrapper {
        padding: 24px 0 48px;
        gap: 20px;
    }

    .container {
        width: min(100% - 32px, var(--container));
    }

    .connect-card-inner {
        padding: 28px 24px 22px;
    }

    .connect-actions {
        grid-template-columns: repeat(2, 1fr);
    }

    .connect-btn--instagram {
        grid-column: 1 / -1;
    }

    .connect-logo {
        max-height: 140px;
    }

    .video-panel-box {
        padding: 14px;
    }

    .sponsor-zone-head {
        margin-bottom: 24px;
    }

    .sponsor-bento {
        gap: 14px;
    }

    .deal-card {
        min-height: 190px;
    }
}

@media (max-width: 767px) {
    .sponsor-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .deal-card--vip-hero {
        min-height: 190px;
    }

    .deal-card--vip-hero .deal-logo img {
        max-height: 72px;
    }

    .sponsor-bento--vip {
        max-width: 100%;
    }

    .deal-body {
        padding: 16px 10px 10px;
        min-height: 90px;
    }

    .deal-logo img {
        max-height: 56px;
        max-width: 82%;
    }

    .deal-badge {
        font-size: 0.55rem;
        padding: 3px 7px;
        max-width: calc(100% - 40px);
    }

    .deal-foot {
        padding: 8px 10px;
    }

    .deal-foot-text {
        font-size: 0.65rem;
    }

    .about-item {
        padding: 16px;
        gap: 12px;
    }

    .about-item-num {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }
}

@media (max-width: 400px) {
    .container {
        width: min(100% - 16px, var(--container));
    }

    .connect-btn {
        padding: 12px 14px;
        gap: 12px;
    }

    .connect-btn-icon {
        width: 40px;
        height: 40px;
    }

    .connect-btn-text strong {
        font-size: 0.88rem;
    }

    .sponsor-bento {
        grid-template-columns: 1fr;
    }
}