/* ==========================================================================
   AKINCI AIRSOFT - TACTICAL DARK THEME STYLESHEET
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #070b14;
    --bg-card: rgba(14, 21, 38, 0.75);
    --bg-card-hover: rgba(20, 30, 53, 0.85);
    --border-card: rgba(255, 42, 75, 0.22);
    --border-card-hover: rgba(255, 42, 75, 0.6);

    /* Tactical Accent Colors */
    --accent-red: #ff2a4b;
    --accent-red-hover: #e01b3a;
    --accent-red-glow: rgba(255, 42, 75, 0.45);
    --accent-cyan: #00d2ff;
    --accent-cyan-glow: rgba(0, 210, 255, 0.3);
    --accent-gold: #ffb703;

    /* Typography Colors */
    --text-primary: #f0f4fc;
    --text-secondary: #a3b3d1;
    --text-muted: #64748b;

    /* Fonts */
    --font-heading: 'Orbitron', -apple-system, sans-serif;
    --font-subheading: 'Rajdhani', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Transitions & Shadows */
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glow-shadow: 0 0 25px var(--accent-red-glow);
    --glass-blur: blur(16px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
    border: 1px solid var(--border-card);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Reset & Global Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Tactical Crosshair Cursor Class */
body.crosshair-active, body.crosshair-active * {
    cursor: crosshair !important;
}

/* Canvas Background */
#tactical-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* HUD Overlay Styles */
.hud-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, transparent 30%, rgba(7, 11, 20, 0.85) 90%),
                linear-gradient(rgba(255, 255, 255, 0.015) 50%, rgba(0, 0, 0, 0.2) 50%);
    background-size: 100% 100%, 100% 4px;
    pointer-events: none;
    z-index: 1;
}

.hud-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 42, 75, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 42, 75, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* Main Container */
.app-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 42, 75, 0.15);
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 15px var(--accent-red-glow);
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.brand-name .highlight {
    color: var(--accent-red);
}

.brand-sub {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Status Pill */
.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 42, 75, 0.08);
    border: 1px solid rgba(255, 42, 75, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-red);
    animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
}

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

.btn-instagram-top {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e1306c, #833ab4);
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.btn-instagram-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

.btn-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-icon:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(255, 42, 75, 0.1);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 60px 0 40px;
    text-align: center;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Central Logo Emblem */
.logo-emblem-wrapper {
    position: relative;
    width: 170px;
    height: 170px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.logo-circle {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-red);
    box-shadow: 0 0 35px var(--accent-red-glow), inset 0 0 20px rgba(0, 0, 0, 0.8);
    z-index: 2;
    transition: transform 0.3s ease-out;
}

.main-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tactical Decorative Rings around Logo */
.tactical-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 42, 75, 0.4);
    pointer-events: none;
}

.ring-outer {
    width: 180px;
    height: 180px;
    border-color: rgba(255, 42, 75, 0.3);
    animation: rotateClockwise 25s linear infinite;
}

.ring-middle {
    width: 155px;
    height: 155px;
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-top-color: var(--accent-cyan);
    animation: rotateCounter 18s linear infinite;
}

.tactical-compass {
    position: absolute;
    width: 190px;
    height: 190px;
    font-family: var(--font-subheading);
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    pointer-events: none;
}

.tactical-compass span {
    position: absolute;
}
.tactical-compass span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); color: var(--accent-red); }
.tactical-compass span:nth-child(2) { right: 0; top: 50%; transform: translateY(-50%); }
.tactical-compass span:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.tactical-compass span:nth-child(4) { left: 0; top: 50%; transform: translateY(-50%); }

@keyframes rotateClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCounter {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Hero Typography */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.25);
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 42, 75, 0.3);
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Slogan Quote */
.slogan-text {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    text-shadow: 0 0 18px rgba(255, 183, 3, 0.35);
    animation: slogan-pulse 3s ease-in-out infinite;
}

@keyframes slogan-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--accent-red);
    font-weight: 600;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */

.countdown-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: var(--glass-blur);
    padding: 24px 36px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 42, 75, 0.05);
    margin-bottom: 40px;
    width: 100%;
    max-width: 700px;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.countdown-title {
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.countdown-title i {
    color: var(--accent-red);
}

.hud-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 42, 75, 0.3), transparent);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 75px;
}

.time-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-primary);
    background: linear-gradient(180deg, #ffffff, #a3b3d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.time-label {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-top: 4px;
}

.time-sep {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-red);
    margin-bottom: 20px;
    opacity: 0.7;
}

/* ==========================================================================
   SUBSCRIBE BOX
   ========================================================================== */

.subscribe-box {
    width: 100%;
    max-width: 650px;
}

.subscribe-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-family: var(--font-subheading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.subscribe-title i {
    color: var(--accent-gold);
    margin-right: 6px;
}

.subscribe-form {
    width: 100%;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(10, 16, 28, 0.9);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 6px;
    transition: var(--transition-fast);
}

.input-group:focus-within {
    border-color: var(--accent-red);
    box-shadow: 0 0 20px var(--accent-red-glow);
}

.input-icon {
    position: absolute;
    left: 18px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 14px 12px 48px;
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px var(--accent-red-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff4765, var(--accent-red));
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(255, 42, 75, 0.6);
}

.form-feedback {
    margin-top: 10px;
    font-size: 0.85rem;
    font-family: var(--font-subheading);
    font-weight: 600;
    letter-spacing: 1px;
    min-height: 20px;
}

.form-feedback.success {
    color: #22c55e;
}

.form-feedback.error {
    color: #ef4444;
}

/* ==========================================================================
   BANNER PREVIEW SECTION
   ========================================================================== */

.banner-preview {
    margin: 40px 0 70px;
}

.banner-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-card);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    height: 320px;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.1);
    transition: transform 0.6s ease;
}

.banner-card:hover .banner-img {
    transform: scale(1.03);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    background: linear-gradient(0deg, rgba(7, 11, 20, 0.95) 20%, rgba(7, 11, 20, 0.4) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.banner-badge {
    background: var(--accent-red);
    color: #fff;
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 4px;
}

.banner-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.banner-overlay p {
    color: var(--text-secondary);
    max-width: 650px;
    font-size: 0.95rem;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
    padding: 20px 0 60px;
}

.section-title-box {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 6px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: var(--glass-blur);
    padding: 28px 24px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 42, 75, 0.15);
}

.feature-card.highlight-card {
    border-color: rgba(255, 42, 75, 0.5);
    background: linear-gradient(165deg, rgba(255, 42, 75, 0.1), var(--bg-card));
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 42, 75, 0.12);
    border: 1px solid rgba(255, 42, 75, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 20px;
}

.card-tag {
    align-self: flex-start;
    font-family: var(--font-subheading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    background: rgba(0, 210, 255, 0.08);
    padding: 3px 10px;
    border-radius: 4px;
}

.card-tag.red {
    color: var(--accent-red);
    background: rgba(255, 42, 75, 0.12);
}

/* ==========================================================================
   INSTAGRAM INTEGRATION SECTION
   ========================================================================== */

.instagram-section {
    margin: 20px 0 70px;
}

.insta-glass-card {
    background: linear-gradient(135deg, rgba(14, 21, 38, 0.9), rgba(20, 10, 28, 0.85));
    border: 1px solid rgba(225, 48, 108, 0.3);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 20px;
}

.insta-profile-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.insta-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #e1306c;
    padding: 2px;
    object-fit: cover;
}

.insta-profile-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.insta-profile-info p {
    color: #e1306c;
    font-family: var(--font-subheading);
    font-weight: 700;
}

.btn-instagram-lg {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.btn-instagram-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6);
}

.insta-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

/* Instagram Embed 4-Post Grid */
.insta-embeds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.insta-embed-post {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-embed-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(255, 42, 75, 0.2);
}

.insta-embed-post .instagram-media {
    margin: 0 !important;
    min-width: unset !important;
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .insta-embeds-grid {
        grid-template-columns: 1fr;
    }
}

.embed-notice-inner {
    background: rgba(255, 42, 75, 0.06);
    border: 1px dashed rgba(225, 48, 108, 0.35);
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.embed-notice-inner > i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.embed-notice-inner h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.embed-notice-inner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-ig-visit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.btn-ig-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.5);
}

.post-count-badge {
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}


.insta-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(225, 48, 108, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-item:hover img {
    transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item.text-item {
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: 1px dashed rgba(225, 48, 108, 0.4);
}

.inner-text i {
    font-size: 2.2rem;
    color: var(--accent-red);
    margin-bottom: 8px;
}

.inner-text h4 {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.inner-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    padding: 20px 0 80px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-red);
}

.faq-question i {
    color: var(--accent-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.main-footer {
    border-top: 1px solid rgba(255, 42, 75, 0.15);
    padding: 40px 0 30px;
    margin-top: 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-red);
}

.footer-socials a {
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: #e1306c;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* HUD Toggle Switch */
.hud-toggle-wrapper {
    display: flex;
    align-items: center;
}

.switch-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.switch-label input {
    display: none;
}

.custom-slider {
    position: relative;
    width: 38px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid var(--border-card);
}

.custom-slider::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    left: 2px;
    top: 2px;
    background-color: var(--text-muted);
    transition: 0.3s;
}

.switch-label input:checked + .custom-slider {
    background-color: rgba(255, 42, 75, 0.3);
    border-color: var(--accent-red);
}

.switch-label input:checked + .custom-slider::before {
    transform: translateX(18px);
    background-color: var(--accent-red);
    box-shadow: 0 0 8px var(--accent-red);
}

.label-text {
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

/* ==========================================================================
   TOAST MODAL NOTIFICATION
   ========================================================================== */

.toast-modal {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    transition: all 0.4s ease;
}

.toast-modal.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.toast-content {
    background: var(--bg-card);
    border: 1px solid var(--accent-red);
    box-shadow: 0 10px 30px rgba(255, 42, 75, 0.3);
    backdrop-filter: var(--glass-blur);
    padding: 16px 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 380px;
}

.toast-icon {
    font-size: 1.8rem;
    color: #22c55e;
}

.toast-body h4 {
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.toast-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    margin-left: auto;
}

.toast-close:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .time-block {
        min-width: 55px;
    }
    
    .time-num {
        font-size: 2rem;
    }
    
    .input-group {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }
    
    .input-group input {
        padding-left: 36px;
    }

    .input-icon {
        top: 22px;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .banner-card {
        height: 250px;
    }

    .banner-overlay h3 {
        font-size: 1.3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
