/* PREMIUM V5.1 - CURSOR GLOW ADDITION */

@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@700&family=Space+Grotesk:wght@300;400;500;600&display=swap');

/* --- GLOBAL SETTINGS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
    /* VARSAYILAN FAREYİ GİZLE */
}

/* --- LOCKED & INSTANT CURSOR --- */
.base-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    font-family: 'Space Grotesk', monospace;
    font-size: 24px;
    font-weight: 300;
    line-height: 20px;
    color: #fff;
    pointer-events: none;
    z-index: 10000;
    text-align: center;
    /* CSS'de merkezleme */
    transform-origin: center center;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    /* GECİKMESİZ HAREKET İÇİN TRANSFORM YOK! */
    transition: font-size 0.2s, color 0.2s;
    mix-blend-mode: exclusion;
}

.cursor-aura {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Merkezden çıkan ışık */
    background: radial-gradient(circle, rgba(227, 0, 34, 0.6) 0%, rgba(227, 0, 34, 0) 70%);
    filter: blur(5px);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;

    transform-origin: center center;
    margin: 0;
    padding: 0;

    /* GECİKMESİZ HAREKET İÇİN TRANSFORM YOK! */
    transition: width 0.3s, height 0.3s, opacity 0.3s, background 0.3s;
    mix-blend-mode: screen;
}

/* HOVER DURUMLARI */
.base-cursor.hover-active {
    font-weight: 700;
    color: #e30022;
    font-size: 32px;
    /* Artı Büyüsün */
}

.cursor-aura.hover-active {
    width: 90px;
    height: 90px;
    /* Işık Büyüsün */
    opacity: 1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(227, 0, 34, 0.4) 50%, rgba(227, 0, 34, 0) 80%);
}



/* HOVER DURUMLARI */
.base-cursor.hover-active {
    font-weight: 700;
    color: #e30022;
    font-size: 32px;
    /* Artı Büyüsün */
}

.cursor-aura.hover-active {
    width: 90px;
    height: 90px;
    /* Işık Büyüsün */
    opacity: 1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(227, 0, 34, 0.4) 50%, rgba(227, 0, 34, 0) 80%);
}

html {
    background-color: #050505;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: transparent;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #e30022;
    border-radius: 4px;
}

/* Selection */
::selection {
    background: #e30022;
    color: #fff;
}

/* Scanline Overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0px, rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 2px);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.2;
}

/* MOUSE GLOW REMOVED */

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: 0.3s;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

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


/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: 'Antonio';
    font-size: 24px;
    text-transform: uppercase;
}

.logo span {
    color: #e30022;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    position: relative;
}

.menu a:hover {
    color: #fff;
}

.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #e30022;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

/* --- HERO --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.orb.red {
    background: #e30022;
    top: 10%;
    left: 10%;
}

.orb.purple {
    background: #7c3aed;
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.hero h1 {
    font-family: 'Antonio';
    font-size: clamp(60px, 12vw, 150px);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
    color: #000;
}

.btn.primary {
    background: #e30022;
    border-color: #e30022;
}

.btn.primary:hover {
    background: #ff002b;
    color: #fff;
    box-shadow: 0 0 30px rgba(227, 0, 34, 0.4);
}


/* --- THE CARDS (BULLETPROOF FIXED) --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Wrapper for the card itself */
.featured-card,
.artist-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* No overflow:hidden here, so shadows can spill out if needed. Instead we mask the image wrapper. */
}

.featured-card:hover,
.artist-card:hover {
    transform: translateY(-8px);
    border-color: #e30022;
    box-shadow: 0 10px 40px rgba(227, 0, 34, 0.15);
}

/* THE MASK (Wrapper around image) */
.card-img,
.artist-img-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    /* CRITICAL: Everything inside stays inside! */
    position: relative;
    background: #000;
}

/* THE IMAGE (Zooms inside the mask) */
.card-img img,
.artist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, filter;
}

/* HOVER EFFECT */
.featured-card:hover img,
.artist-card:hover img {
    transform: scale(1.1);
    /* Zoom Effect */
    filter: grayscale(0%);
    /* Color Reveal */
}

/* TEXT AREA */
.card-info {
    padding: 25px;
    text-align: left;
    background: #0a0a0a;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-info h3 {
    font-family: 'Antonio';
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #fff;
    transition: 0.3s;
}

.featured-card:hover h3,
.artist-card:hover h3 {
    color: #e30022;
    text-shadow: 0 0 15px rgba(227, 0, 34, 0.4);
}

.card-info span,
.card-info p {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* --- SERVICES --- */
.services {
    padding: 100px 0;
    background: #050505;
}

.section-title {
    font-family: 'Antonio';
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

.service-card {
    background: linear-gradient(180deg, #100505 0%, #050505 100%);
    border: 1px solid rgba(227, 0, 34, 0.15);
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #e30022;
    box-shadow: 0 10px 40px rgba(227, 0, 34, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 0, 34, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(227, 0, 34, 0.3);
    color: #e30022;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.service-card:hover .service-icon {
    background: #e30022;
    color: #fff;
    box-shadow: 0 0 20px #e30022;
}

/* --- MANIFESTO (THE VISION) --- */
.manifesto {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.manifesto-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.manifesto-text p:first-child {
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.stat-num {
    font-family: 'Antonio', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-size: 13px;
    color: #e30022;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- SUBMIT PAGE --- */
.steps-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step-card {
    padding: 30px;
    border-left: 2px solid #333;
    transition: 0.3s;
    position: relative;
}

.step-card:hover {
    border-left-color: #e30022;
    background: linear-gradient(90deg, rgba(227, 0, 34, 0.03), transparent);
}

.step-num {
    font-family: 'Antonio';
    font-size: 40px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: #777;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.8s ease backwards;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* CUSTOM FORM STYLES (Local Form) */
.custom-form {
    padding: 40px;
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    background: #080808;
    border: 1px solid #222;
    color: #fff;
    padding: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: #e30022;
    outline: none;
    background: #0c0c0c;
    box-shadow: 0 0 20px rgba(227, 0, 34, 0.15);
}

.form-input::placeholder {
    color: #444;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

/* Success State */
.success-message {
    display: none;
    text-align: center;
    padding: 80px 40px;
    animation: fadeInUp 0.5s;
}

.success-icon {
    font-size: 60px;
    color: #e30022;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(227, 0, 34, 0.6));
    animation: float 3s ease-in-out infinite;
}

.success-title {
    font-family: 'Antonio';
    font-size: 32px;
    margin-bottom: 10px;
    color: #fff;
}

.success-desc {
    color: #888;
    font-size: 14px;
}

/* --- NEWSLETTER --- */
.newsletter {
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at center, #1a0505 0%, #050505 70%);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px);
    opacity: 0.1;
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    font-family: 'Antonio';
    font-size: 64px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 0.9;
    text-transform: uppercase;
}

.newsletter p {
    color: #888;
    margin-bottom: 40px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Space Grotesk';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    width: 100%;
}

.newsletter-input:focus {
    border-color: #e30022;
    outline: none;
    background: rgba(0, 0, 0, 0.8);
}

.newsletter-input::placeholder {
    color: #555;
}

/* --- RESPONSIVE --- */
@media(max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }

    .nav {
        padding: 15px 0;
    }

    .stats {
        flex-direction: column;
        gap: 40px;
    }
}

/* --- SCROLL REVEAL & 3D TILT --- */

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    /* Ultra Smooth */
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Tilt Card Base (Active Pan) */
.tilt-card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Faster response */
    transform-style: preserve-3d;
    will-change: transform;
    /* Mouse ile anlık tepki versin */
}

/* Derinlik Efekti: İçerikler havada dursun */
.tilt-card .service-icon,
.tilt-card h3,
.tilt-card p,
.tilt-card .card-img,
.tilt-card .card-info {
    transform: translateZ(20px);
    /* Havada asılı kalma */
    transition: transform 0.3s;
}

.tilt-card:hover .service-icon,
.tilt-card:hover h3 {
    transform: translateZ(40px);
    /* Hover'da daha da çıksın */
}

/* RESPONSIVE LAST CHECK */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .nav {
        padding: 15px 0;
    }

    .stats {
        flex-direction: column;
        gap: 40px;
    }

    /* Mobilde 3D Tilt'i kapat (Performans) */
    .tilt-card {
        transform: none !important;
    }
}

/* --- REFACTORED UTILITIES (ADDED) --- */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-left {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-center {
    display: flex;
    gap: 40px;
}

.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo-img {
    height: 40px;
    animation: floatY 3s infinite;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.logo-text span {
    color: #e30022;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons .nav-icon {
    font-size: 18px;
    color: #aaa;
    transition: 0.3s;
}

.social-icons .nav-icon:hover {
    color: #fff;
}

/* Hero Refactor */
.hero-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 0, 34, 0.15), transparent 70%);
    filter: blur(80px);
    animation: pulse 10s infinite;
    top: 20%;
    left: 20%;
}

.hero-logo-wrapper {
    width: 400px;
    max-width: 80vw;
    margin: 0 auto 20px auto;
    position: relative;
}

.hero-logo-img {
    width: 100%;
    transition: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.hero-logo-main {
    width: 100%;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    filter: grayscale(100%) brightness(60%);
}

.hero-title {
    font-size: clamp(40px, 15vw, 80px);
    line-height: 0.9;
    margin: 10px 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-height: 1.2em;
}

.hero-social-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Feature/Artist Grids */
.artist-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: flex;
    height: 400px;
    background: #080808;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-row-img {
    flex: 1;
    background-position: center;
    background-size: cover;
    position: relative;
    min-width: 300px;
}

.feature-row-embed {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
}

.embed-iframe {
    border-radius: 12px;
    width: 100%;
    height: 352px;
}

/* Moved from index.html embedded style */
.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-link:hover {
    color: #fff;
}

.btn-submit {
    background: #e30022;
    color: #fff;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #fff;
    color: #000;
}

/* Hero Logo Hover Effects */
.hero-logo-wrapper:hover .hero-logo-img {
    opacity: 1 !important;
}

.hero-logo-wrapper:hover .hero-logo-main {
    opacity: 1;
    filter: grayscale(100%) brightness(30%);
}

/* More Refactored Styles */
.btn-discord {
    font-size: 12px;
    padding: 10px 20px;
    background: #5865F2;
    border-color: #5865F2;
}

.btn-spotify-locked {
    font-size: 12px;
    padding: 10px 20px;
    background: #1db954;
    border-color: #1db954;
    cursor: not-allowed;
}

.contact-section {
    padding: 100px 0;
}

.contact-form-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-input {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
    /* Ensure font matches */
}

.footer-custom {
    padding: 50px 0;
    background: #020202;
    border-top: 1px solid #111;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    margin-top: 10px;
    font-size: 12px;
    color: #444;
}

.live-stat {
    color: #e30022;
    font-family: 'Space Grotesk';
    font-size: 12px;
    text-transform: uppercase;
}

.modal-overlay {
    /* visible logic handled by inline JS often, but base style here */
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 500px;
    max-width: 90%;
    background: #0a0a0a;
    padding: 40px;
    border: 1px solid #333;
    border-radius: 10px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.warning-box {
    color: #e30022;
    font-size: 13px;
    margin-bottom: 20px;
    border: 1px solid #e30022;
    padding: 10px;
    background: rgba(227, 0, 34, 0.1);
}

/* Hero Variations */
.hero-medium {
    min-height: 60vh !important;
}

.hero-compact {
    min-height: 40vh !important;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs span-divider {
    color: #e30022;
    margin: 0 5px;
}

.breadcrumbs span-active {
    color: #fff;
}

.nav-link.active {
    color: #fff !important;
}

/* Feature Box & Grid */
.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #e30022;
    box-shadow: 0 5px 30px rgba(227, 0, 34, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: #e30022;
    margin-bottom: 20px;
}

.feature-title {
    margin: 5px 0 15px 0;
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
    color: #fff;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.6;
}

/* Shop Unique */
.shop-hero {
    min-height: 100vh;
    padding-top: 60px;
}

.shop-title {
    font-size: clamp(50px, 12vw, 120px);
    letter-spacing: -4px;
    margin-bottom: 20px;
    text-shadow: 0 0 50px rgba(227, 0, 34, 0.3);
}

.shop-subtitle {
    color: #888;
    letter-spacing: 4px;
    font-size: 14px;
    text-transform: uppercase;
}

.shop-timer {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding-top: 30px;
}

.shop-timer span {
    color: #e30022;
    font-family: 'Antonio';
    font-size: clamp(30px, 5vw, 50px);
    letter-spacing: 5px;
}

/* Submit Page */
.page-header {
    padding-top: 150px;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: clamp(40px, 8vw, 60px);
    font-weight: 700;
    color: #e30022;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(227, 0, 34, 0.3);
}

.page-subtitle {
    color: #888;
    letter-spacing: 1px;
}

.tally-wrapper {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}