:root {
    --bg-color: #000000;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --primary-color: #3b82f6; /* Bronze */
    --primary-hover: rgba(59, 130, 246, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 7.5px;
    height: 4%;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #222222;
    border-radius: 4px;
    border: 1px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Glow */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.circle-1 { width: 500px; height: 500px; background: #3b82f6; top: -10%; left: -10%; }
.circle-2 { width: 400px; height: 400px; background: #2563eb; top: 40%; right: -5%; }
.circle-3 { width: 600px; height: 600px; background: #60a5fa; bottom: -20%; left: 20%; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 9990;
    transition: all 0.3s ease;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 20, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 24px 24px;
    padding: 0.65rem 1rem 0.65rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-discord {
    color: #ffffff;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-discord:hover {
    background: #5865F2;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
}

.header-download {
    color: #000000;
    background: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-download:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.discord-svg, .youtube-svg {
    transition: color 0.3s ease;
}

.footer-col ul.social-links li a:hover .discord-svg {
    color: #5865F2;
}
.footer-col ul.social-links li a:hover .youtube-svg {
    color: #FF0000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--text-main);
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-color);
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge i {
    width: 12px;
    height: 12px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.icon-btn:hover {
    background: var(--glass-bg);
    color: var(--text-main);
}

.contact-btn {
    display: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .contact-btn { display: flex; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 6rem;
    position: relative;
}

/* Premium Liquid Chroma 3D Background */
.premium-aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background-color: #000000;
    pointer-events: none;
}
.premium-aurora::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('arkaplan.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Keskinlik ve renk patlaması için ufak bir filtre */
    filter: contrast(1.1) saturate(1.1);
}
.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(-12vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, transparent 60%);
    padding: 2rem;
    border-radius: 2rem;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    animation: fadeInDown 1s ease forwards;
}

.status-dot {
    width: 10px;
    height: 10px;
    color: var(--primary-color);
    fill: var(--primary-color);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    animation: fadeInDown 1s ease 0.2s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-title { font-size: 5rem; }
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), #22d3ee, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    animation: fadeInDown 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInDown 1s ease 0.6s forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    position: relative;
    padding: 8rem 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    pointer-events: none; /* Allows hovering marquee behind text gaps */
}

.about-content * {
    pointer-events: auto; /* Restores clicking on buttons/text inside */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .section-title { font-size: 3.5rem; }
}

.about-desc {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.marquee-container {
    position: absolute;
    width: 120%;
    top: 50%;
    left: -10%;
    transform: translateY(-50%) rotate(-2deg) scale(1.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.marquee-track {
    display: flex;
    gap: 1rem;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.5rem)); }
}

.marquee-item {
    width: 250px;
    height: 125px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    opacity: 0.25;
    transition: opacity 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.marquee-item:hover {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    z-index: 50;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.overlay-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* Removed solid black overlay to allow glowing background to shine through seamlessly */
}

/* Features */
.features-section {
    padding: 6rem 0 10rem 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.features-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
}


/* ═══════════════════════════════════════════════ */
/* ULTRA PREMIUM BENTO GRID & SPOTLIGHT CARDS      */
/* ═══════════════════════════════════════════════ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Bento Grid Layout for 6 Cards */
.feature-card:nth-child(1) { grid-column: span 4; }
.feature-card:nth-child(2) { grid-column: span 2; }
.feature-card:nth-child(3) { grid-column: span 2; }
.feature-card:nth-child(4) { grid-column: span 4; }
.feature-card:nth-child(5) { grid-column: span 3; }
.feature-card:nth-child(6) { grid-column: span 3; }

@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card:nth-child(1) { grid-column: span 2; }
    .feature-card:nth-child(2) { grid-column: span 1; }
    .feature-card:nth-child(3) { grid-column: span 1; }
    .feature-card:nth-child(4) { grid-column: span 2; }
    .feature-card:nth-child(5) { grid-column: span 1; }
    .feature-card:nth-child(6) { grid-column: span 1; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card:nth-child(n) { grid-column: span 1; }
}

.feature-card {
    position: relative;
    background: rgba(5, 5, 5, 0.4);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    /* Remove static border so the glow acts as the border */
    border: none; 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

/* Mouse-tracking border glow - Sharp Silvery Premium effect */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        300px circle at var(--mouse-x, 0) var(--mouse-y, 0),
        rgba(255, 255, 255, 1) 0%,
        rgba(203, 213, 225, 0.8) 10%,
        rgba(148, 163, 184, 0.2) 30%,
        transparent 60%
    );
    z-index: 1;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Make glow visible when hovering anywhere in the grid for proximity effect, or just hover on the card */
.feature-card:hover::before {
    opacity: 1;
}

/* Base content wrapper - pure dark glass */
.feature-card > .card-content-wrapper {
    position: absolute;
    inset: 1px; /* 1px gap for the glowing border to shine through */
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 23px;
    z-index: 2;
    transition: background 0.5s ease;
}

.feature-card:hover > .card-content-wrapper {
    background: rgba(15, 15, 18, 0.75);
}

/* The Noise Layer */
.card-noise {
    position: absolute;
    inset: 1px;
    z-index: 3;
    border-radius: 23px;
    opacity: 0.15;
    pointer-events: none;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Ambient Orbs - Extremely blurred colored lights inside the card */
.card-ambient-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 4;
    opacity: 0.3;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .card-ambient-orb {
    opacity: 0.6;
    transform: scale(1.2);
}

.orb-purple { background: #a855f7; top: -50px; right: -50px; }
.orb-blue { background: #3b82f6; bottom: -50px; left: -50px; }
.orb-cyan { background: #06b6d4; top: 40%; right: -80px; }
.orb-green { background: #10b981; bottom: -20px; right: -20px; }
.orb-gold { background: #f59e0b; top: -100px; left: 30%; width: 400px; height: 150px; filter: blur(100px); }

/* Abstract Geometric Graphics */
.card-graphic {
    position: absolute;
    inset: 1px;
    z-index: 4;
    border-radius: 23px;
    pointer-events: none;
    opacity: 0.2;
    transition: all 0.8s ease;
}

.feature-card:hover .card-graphic {
    opacity: 0.5;
    transform: translateY(-10px) scale(1.05); /* Parallax push */
}

/* Specific Graphic Shapes */
.shape-slash {
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 45%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 55%, transparent 60%);
}
.shape-dots {
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(ellipse at bottom right, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, black 10%, transparent 70%);
}
.shape-waves {
    background: repeating-radial-gradient(circle at top right, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}
.shape-grid {
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to top left, black, transparent);
    -webkit-mask-image: linear-gradient(to top left, black, transparent);
    transform: perspective(500px) rotateX(60deg) scale(2);
    transform-origin: bottom;
}
.shape-horizon {
    background: linear-gradient(to top, rgba(255,255,255,0.08) 0%, transparent 30%);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Typography & Content Layer */
.card-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 20px rgba(0,0,0,0.5);
    color: #d1d5db;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.feature-card:hover .feature-icon {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.03) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 10px 30px rgba(0,0,0,0.8);
    transform: translateY(-8px) scale(1.05);
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: color 0.3s ease, transform 0.4s ease;
}

.feature-card:hover .feature-title {
    transform: translateY(-2px);
}

.feature-desc {
    color: #a1a1aa; /* Zinc 400 */
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
    transition: transform 0.4s ease, color 0.3s ease;
}

.feature-card:hover .feature-desc {
    color: #e4e4e7; /* Zinc 200 */
    transform: translateY(-2px);
}

.highlight {
    color: #f4f4f5;
    font-weight: 500;
}

.italic-desc {
    font-style: italic;
    color: #71717a;
    margin-top: 0.5rem;
}

/* Add an ultra-subtle sheen line across the top border of cards */
.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    z-index: 10;
    opacity: 0.5;
}

/* Staggered Entrance Animation */
.feature-card.animate-up {
    animation: fadeUpBento 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUpBento {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}


/* ═══════════════════════════════════════════════ */
/* ULTRA PREMIUM APP SHOWCASE                      */
/* ═══════════════════════════════════════════════ */
.app-showcase-section {
    padding: 10rem 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: radial-gradient(circle at center 30%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
}

.showcase-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
}

.showcase-main-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
}

@media (max-width: 768px) {
    .showcase-main-title { font-size: 3rem; }
}

.showcase-main-desc {
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.7;
    font-weight: 300;
    max-width: 700px;
}

/* Glass Window Mockup (Hyper Premium 3D) */
.mac-window-mockup {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(10, 10, 12, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 40px 100px -20px rgba(0, 0, 0, 0.8), 
        0 0 80px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.2),
        inset 0 0 20px rgba(255,255,255,0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    overflow: hidden;
    transform: perspective(2500px) rotateX(15deg) scale(0.95);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-origin: center center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.8s ease;
    z-index: 2;
}

.mac-window-mockup:hover {
    transform: perspective(2500px) rotateX(0deg) scale(1);
    box-shadow: 
        0 60px 120px -20px rgba(0, 0, 0, 0.9), 
        0 0 120px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Ambient Deep Glow */
.mac-window-mockup::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 5%;
    right: 5%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.8s ease;
}

.mac-window-mockup:hover::after {
    opacity: 1;
}

.mac-titlebar {
    height: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    padding: 0 0.8rem;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mac-titlebar::before {
    content: "Gamevia App";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.mac-buttons {
    display: flex;
    gap: 6px;
}

.mac-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2), inset 0 1px 2px rgba(255,255,255,0.2);
}
.mac-btn.close { background: #ff5f56; }
.mac-btn.minimize { background: #ffbd2e; }
.mac-btn.maximize { background: #27c93f; }

.mac-content {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #050505;
}

.showcase-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1) translateY(20px) translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    image-rendering: -webkit-optimize-contrast;
}

.showcase-img.active {
    opacity: 1;
    transform: scale(1) translateY(0) translateZ(0);
    pointer-events: auto;
}

/* Glassmorphic Floating Dock Menu */
.showcase-thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 4rem auto 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    max-width: fit-content;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
}

.thumb-card {
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.thumb-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.thumb-title {
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.thumb-card:hover .thumb-title {
    color: #ffffff;
}

.thumb-card.active {
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.thumb-card.active .thumb-title {
    color: #000;
}

.thumb-progress {
    display: none;
}

/* Custom Logo Styling */
.gamevia-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gamevia-logo-circle {
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.thumb-card.active .thumb-progress {
    width: 100%;
}

/* 4. Holographic Testimonials */
.testimonials-section {
    padding: 6rem 0;
    overflow: hidden;
    background: transparent;
    position: relative;
    z-index: 10;
}

.testimonials-marquee-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 4rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee-horizontal 50s linear infinite;
}

.testi-group {
    display: flex;
    gap: 2rem;
}

@keyframes marquee-horizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.testimonial-card {
    width: 450px;
    flex-shrink: 0;
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s, border-color 0.4s;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, rgba(40, 40, 40, 0.5) 0%, rgba(15, 15, 15, 0.9) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.testi-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e5e5e5;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: border-color 0.3s;
}

.testimonial-card:hover .testi-avatar {
    border-color: var(--primary-color);
}

.testi-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.testi-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Custom Premium Cursor */
body, a, button, [role="button"], input, select, textarea {
    cursor: none !important;
}

.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-ring.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════════ */
/* MASSIVE CALL TO ACTION (CTA) */
/* ═══════════════════════════════════════════════ */
.bottom-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 40px;
    padding: 80px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.cta-inner:hover::before {
    left: 200%;
    transition: 1s ease-in-out;
}

.cta-content {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.cta-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    background: #f0f0f0;
}

.cta-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(50px);
    border-radius: 50%;
    z-index: 1;
    animation: pulseOrb 4s infinite alternate ease-in-out;
}

@keyframes pulseOrb {
    0% { transform: scale(1); opacity: 0.15; }
    100% { transform: scale(1.1); opacity: 0.25; }
}

.cta-logo {
    max-width: 350px;
    width: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.8));
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-inner:hover .cta-logo {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

@media (max-width: 992px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .cta-content {
        max-width: 100%;
    }
    .cta-visual {
        margin-top: 40px;
    }
}

.text-center {
    text-align: center;
}

.team-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════ */
/* DEVELOPERS SHOWCASE / LANYARD API               */
/* ═══════════════════════════════════════════════ */
.developers-showcase {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dev-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.dev-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.dev-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.dev-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.dev-card-header {
    display: flex;
    align-items: flex-start; /* Align to top instead of center */
    gap: 20px;
    margin-bottom: 15px; 
}

.dev-avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0; /* Prevent avatar from shrinking */
    margin-top: -5px; /* Slight bump up */
}

.dev-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.dev-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #111; /* Match background */
    background-color: #747f8d; /* offline default */
}

.dev-status.online { background-color: #43b581; }
.dev-status.idle { background-color: #faa61a; }
.dev-status.dnd { background-color: #f04747; }

.dev-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Keep text starting near top */
    padding-top: 10px; /* Align visual center of h4 with visual center of avatar */
}

.dev-info h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.dev-info span {
    color: #888888;
    font-size: 0.95rem;
    display: block;
}

.dev-custom-status {
    margin-top: 4px;
    font-size: 0.95rem;
    color: #888888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dev-custom-status img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.dev-activity {
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dev-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
}

.dev-activity-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.dev-activity-empty {
    margin-top: auto;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-style: italic;
}

.dev-activity-item img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.dev-activity-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dev-activity-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.dev-activity-state {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.dev-activity-time {
    font-size: 0.8rem;
    color: #888888;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .dev-cards {
        flex-direction: column;
    }
    .dev-title {
        text-align: center;
    }
}
.gamevia-footer {
    background-color: #030303;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 60px 0 40px;
    margin-top: 60px;
    box-shadow: inset 0 20px 40px rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.footer-col h3.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-col.brand-col p.copyright {
    color: #888888;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-col ul.social-links li a i {
    width: 18px;
    height: 18px;
    color: #888888;
    transition: color 0.3s ease;
}

.footer-col ul.social-links li a:hover i {
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col.brand-col {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col.brand-col {
        grid-column: span 1;
    }
}