/**
 * Landing Page Styles
 * Homepage for JustLust graffiti simulator
 */

/* Reset spacing */
body { margin: 0; padding: 0; }

/* ============================================
   VHS / 90s RETRO EFFECTS
   ============================================ */
.vhs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.03) 0px,
        rgba(0, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: vhsFlicker 0.15s infinite;
}

@keyframes vhsFlicker {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.05; }
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip-path: inset(0 0 50% 0);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 2px 0 #00ffff;
    clip-path: inset(50% 0 0 0);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0%, 100% { clip-path: inset(0 0 85% 0); transform: translate(0); }
    20% { clip-path: inset(15% 0 65% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(40% 0 43% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(60% 0 20% 0); transform: translate(-1px, 1px); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(1px, -1px); }
}

@keyframes glitch-anim-2 {
    0%, 100% { clip-path: inset(85% 0 0 0); transform: translate(0); }
    20% { clip-path: inset(65% 0 15% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(43% 0 40% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(20% 0 60% 0); transform: translate(1px, -1px); }
    80% { clip-path: inset(5% 0 80% 0); transform: translate(-1px, 1px); }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(255, 0, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 900;
    color: white;
}

.step-icon {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent);
}

.step-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Step visuals with images */
.step-visual {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.step-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.step-item:hover .step-image {
    transform: scale(1.15);
}

.step-image.step-character {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

/* Step color accents */
.step-vote { border-color: rgba(78, 205, 196, 0.4); }
.step-vote:hover { border-color: var(--secondary); box-shadow: 0 20px 40px rgba(78, 205, 196, 0.3); }
.step-vote .step-icon { background: linear-gradient(135deg, var(--secondary), #2ecc71); }

.step-paint { border-color: rgba(255, 107, 107, 0.4); }
.step-paint:hover { border-color: var(--primary); box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3); }
.step-paint .step-icon { background: linear-gradient(135deg, var(--primary), #ff8787); }

.step-quest { border-color: rgba(155, 89, 182, 0.4); }
.step-quest:hover { border-color: #9b59b6; box-shadow: 0 20px 40px rgba(155, 89, 182, 0.3); }
.step-quest .step-icon { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

.step-rise { border-color: rgba(255, 230, 109, 0.4); }
.step-rise:hover { border-color: var(--accent); box-shadow: 0 20px 40px rgba(255, 230, 109, 0.3); }
.step-rise .step-icon { background: linear-gradient(135deg, var(--accent), #ffa500); }

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    margin-top: 60px;
}

.step-connector::after {
    content: '';
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    transform: rotate(-45deg);
    opacity: 0.6;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; transform: rotate(-45deg) translateX(0); }
    50% { opacity: 1; transform: rotate(-45deg) translateX(5px); }
}

/* ============================================
   PROGRESSION / DIVISIONS SECTION
   ============================================ */
.progression-section {
    padding: var(--spacing-xxl) 0;
    background: var(--dark);
    overflow: hidden;
}

.divisions-track {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: var(--spacing-lg);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--darker);
}

.divisions-track::-webkit-scrollbar {
    height: 8px;
}

.divisions-track::-webkit-scrollbar-track {
    background: var(--darker);
    border-radius: 4px;
}

.divisions-track::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.division-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    min-width: 120px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.division-item:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.division-item.legendary {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 215, 0, 0.2));
    border-color: gold;
    animation: legendGlow 2s ease-in-out infinite;
}

@keyframes legendGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.division-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid;
}

.division-badge.rookie { border-color: #888; }
.division-badge.beginner { border-color: #4ade80; }
.division-badge.intermediate { border-color: #60a5fa; }
.division-badge.advanced { border-color: #a78bfa; }
.division-badge.expert { border-color: #f472b6; }
.division-badge.master { border-color: #fbbf24; }
.division-badge.grandmaster { border-color: #f97316; }
.division-badge.legend { border-color: gold; background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 107, 107, 0.3)); }

.division-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.division-xp {
    font-size: 0.75rem;
    color: var(--gray);
}

.progression-info {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(138, 43, 226, 0.1);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progression-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   SPOTS CAROUSEL SECTION
   ============================================ */
.spots-section {
    padding: var(--spacing-xxl) 0;
    background: var(--darker);
}

.spots-carousel {
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-xl);
}

.spots-track {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform 0.5s ease;
    padding: var(--spacing-md) 0;
}

.spot-card {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 0, 255, 0.2);
    transition: all 0.3s ease;
}

.spot-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.4);
}

.spot-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: rgba(138, 43, 226, 0.3);
}

.spot-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.95));
}

.spot-info h3 {
    font-size: 1.1rem;
    margin: 0 0 var(--spacing-xs);
    color: white;
}

.spot-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.spot-tag {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.spot-tag.risk-low { background: rgba(78, 205, 196, 0.3); color: var(--secondary); }
.spot-tag.risk-medium { background: rgba(255, 230, 109, 0.3); color: var(--accent); }
.spot-tag.risk-high { background: rgba(255, 107, 107, 0.3); color: var(--primary); }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.8);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: var(--spacing-md); }
.carousel-btn.next { right: var(--spacing-md); }

/* ============================================
   PAINT BRANDS SECTION
   ============================================ */
.brands-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.brand-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow: 0 20px 50px rgba(255, 0, 255, 0.3);
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

.brand-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--accent);
}

.brand-tagline {
    color: var(--gray);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.brand-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.brand-features li {
    padding: var(--spacing-xs) 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.brand-style {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.brand-style.professional { background: linear-gradient(135deg, #4ecdc4, #2ecc71); color: white; }
.brand-style.street { background: linear-gradient(135deg, #ff6b6b, #ee5a5a); color: white; }
.brand-style.hardcore { background: linear-gradient(135deg, #333, #555); color: white; }

.special-brand {
    margin-top: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(255, 215, 0, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.special-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.special-brand-content {
    position: relative;
    z-index: 1;
}

.special-label {
    display: inline-block;
    background: gold;
    color: var(--darker);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
}

.special-brand h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.special-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.holographic-text {
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff, #00ffff);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographic 3s linear infinite;
    font-weight: 900;
}

@keyframes holographic {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* ============================================
   PAINTSTAGRAM SECTION
   ============================================ */
.paintstagram-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

/* Paintstagram showcase layout */
.paintstagram-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    align-items: center;
}

.paintstagram-preview {
    perspective: 1000px;
}

.preview-window {
    background: #c0c0c0;
    border: 3px solid;
    border-color: #dfdfdf #808080 #808080 #dfdfdf;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.preview-window:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.preview-titlebar {
    background: linear-gradient(90deg, #000080, #1084d0);
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-title {
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
}

.preview-controls {
    display: flex;
    gap: 3px;
}

.preview-controls span {
    width: 14px;
    height: 14px;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #dfdfdf #808080 #808080 #dfdfdf;
}

.preview-content {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.preview-badge {
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

.paintstagram-features-side {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.paintstagram-feature-compact {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.paintstagram-feature-compact:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: var(--secondary);
    transform: translateX(5px);
}

.paintstagram-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.paintstagram-feature-compact h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 0 0 4px 0;
}

.paintstagram-feature-compact p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.paintstagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.paintstagram-feature {
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.paintstagram-feature:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.3);
}

.paintstagram-icon {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary);
    background: rgba(78, 205, 196, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    border: 2px solid var(--secondary);
}

.paintstagram-feature h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary);
}

.paintstagram-feature p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.paintstagram-tabs-preview {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md);
    background: rgba(78, 205, 196, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.tab-pill {
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tab-pill.active {
    background: var(--secondary);
    color: var(--darker);
    border-color: var(--secondary);
}

.tab-pill.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
    animation: highlightPulse 2s infinite;
}

@keyframes highlightPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 0 20px rgba(78, 205, 196, 0.6); }
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
    padding: var(--spacing-xxl) 0;
    background: var(--darker);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.story-feature {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.story-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.story-feature h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.story-feature p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.quest-examples {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.quest-tag {
    padding: 0.3rem 0.75rem;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.legendary-preview {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.color-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: colorGlow 2s ease-in-out infinite;
}

.color-dot:nth-child(2) { animation-delay: 0.5s; }
.color-dot:nth-child(3) { animation-delay: 1s; }
.color-dot:nth-child(4) { animation-delay: 1.5s; }

@keyframes colorGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
}

.confrontation-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), #ff4757);
    color: white;
    font-weight: 900;
    font-size: 0.85rem;
    border-radius: 20px;
    letter-spacing: 2px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(255, 107, 107, 0.7); }
}

.division-mini-track {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
}

.div-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
}

.div-dot.gold {
    background: linear-gradient(135deg, gold, #ffa500);
    border-color: gold;
    color: var(--darker);
    animation: legendDot 2s ease-in-out infinite;
}

@keyframes legendDot {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--spacing-xxl) 0;
    background: var(--dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 0, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.faq-icon {
    font-size: 1.5rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--accent);
}

.faq-answer {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   ENHANCED FOOTER
   ============================================ */
.enhanced-footer {
    background: linear-gradient(180deg, var(--darker), #050510);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    border-top: 2px solid rgba(255, 0, 255, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    padding: var(--spacing-xs) 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray);
    margin: var(--spacing-xs) 0;
    font-size: 0.9rem;
}

.footer-easter-egg {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-easter-egg:hover {
    opacity: 1;
}

.disket-credit {
    color: var(--primary);
    font-weight: 700;
    cursor: help;
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 767px) {
    /* Hide trains on mobile */
    .landing-train-layer {
        display: none;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        margin: var(--spacing-sm) 0;
        transform: rotate(90deg);
    }

    .step-connector::after {
        width: 20px;
        height: 20px;
    }

    .step-item {
        max-width: 100%;
    }

    .divisions-track {
        padding: var(--spacing-md);
    }

    .division-item {
        min-width: 100px;
        padding: var(--spacing-md);
    }

    .spot-card {
        width: 250px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .glitch-text::before,
    .glitch-text::after {
        display: none;
    }

    /* Paintstagram responsive */
    .paintstagram-showcase {
        grid-template-columns: 1fr;
    }

    .preview-window {
        transform: none;
    }

    .paintstagram-grid {
        grid-template-columns: 1fr;
    }

    .paintstagram-tabs-preview {
        gap: var(--spacing-xs);
        padding: var(--spacing-sm);
    }

    .tab-pill {
        font-size: 0.7rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    /* CTA responsive */
    .cta-character {
        height: 200px;
        opacity: 0.2;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .cta-tagline {
        font-size: 1.1rem;
    }

    .cta-feature {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .btn-cta-main {
        font-size: 1.1rem;
        padding: var(--spacing-md) var(--spacing-xl);
    }

    /* Step visuals responsive */
    .step-visual {
        width: 60px;
        height: 60px;
    }

    .step-image {
        width: 45px;
        height: 45px;
    }

    .step-image.step-character {
        width: 60px;
        height: 60px;
    }

    /* Story section responsive */
    .story-grid {
        grid-template-columns: 1fr;
    }

    .quest-examples {
        justify-content: center;
    }

    .division-mini-track {
        flex-wrap: wrap;
    }

    .div-dot {
        width: 25px;
        height: 25px;
        font-size: 0.6rem;
    }

    .legendary-preview {
        gap: var(--spacing-xs);
    }

    .color-dot {
        width: 30px;
        height: 30px;
    }
}

/* ============================================
   Metro Train Effect for Landing
   ============================================ */
.landing-train-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

@keyframes landingTrainMoveLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100vw - 800px)); }
}

@keyframes landingTrainMoveRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 800px)); }
}

.landing-metro-train {
    position: absolute;
    bottom: 0;
    display: flex;
    gap: 0;
    filter: brightness(0.85) saturate(0.9);
    transition: filter 0.5s ease;
}

.landing-metro-train:hover {
    filter: brightness(1) saturate(1.1) !important;
}

.landing-metro-car {
    width: 690px;
    height: 120px;
    position: relative;
    flex-shrink: 0;
}

.landing-metro-car-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: auto 120px;
    background-repeat: no-repeat;
    background-position: left center;
    border-radius: 8px 0 0 8px;
}

.landing-window-glow {
    position: absolute;
    top: 15px;
    left: 30px;
    right: 30px;
    height: 40px;
    background: linear-gradient(90deg,
        rgba(255, 240, 200, 0.1) 0%,
        rgba(255, 240, 200, 0.2) 10%,
        rgba(255, 240, 200, 0.1) 20%,
        rgba(255, 240, 200, 0.2) 30%,
        rgba(255, 240, 200, 0.1) 40%,
        rgba(255, 240, 200, 0.2) 50%,
        rgba(255, 240, 200, 0.1) 60%,
        rgba(255, 240, 200, 0.2) 70%,
        rgba(255, 240, 200, 0.1) 80%,
        rgba(255, 240, 200, 0.2) 90%,
        rgba(255, 240, 200, 0.1) 100%
    );
    pointer-events: none;
    mix-blend-mode: overlay;
    border-radius: 3px;
}

/* Graffiti artwork overlay on trains */
.landing-train-graffiti {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
}

.landing-train-graffiti img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 2px;
    filter: contrast(1.05) saturate(1.1) brightness(1.05);
}

/* Artist credit on train */
.landing-train-artist {
    position: absolute;
    bottom: 8px;
    right: 15px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-shadow:
        1px 1px 2px rgba(0, 0, 0, 0.9),
        -1px -1px 2px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 6;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('/assets/ui/Trainstation.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(138, 43, 226, 0.6), rgba(255, 0, 255, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-xl);
    padding-top: 80px; /* Account for fixed navbar */
    animation: fadeInUp 1s ease-out;
}

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

.hero-logo {
    width: 300px;
    height: auto;
    margin-bottom: var(--spacing-lg);
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.8)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 0, 255, 1)); }
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
    margin: 0 auto var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(138, 43, 226, 0.3);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #ffe66d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 230, 109, 0.6);
}

.feature-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-trust {
    margin-top: var(--spacing-md);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ============================================
   Scroll Indicator
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 1s both;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.scroll-arrow span {
    display: block;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    animation: scrollBounce 1.5s infinite;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.5;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ============================================
   CTA Buttons
   ============================================ */
.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--primary), #ff8787);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-primary-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.8);
}

.btn-secondary-hero {
    background: transparent;
    border: 3px solid var(--accent);
    color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 230, 109, 0.3);
}

.btn-secondary-hero:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

/* ============================================
   Quick Navigation
   ============================================ */
.quick-nav {
    background: var(--darker);
    padding: var(--spacing-lg) 0;
    border-bottom: 2px solid rgba(255, 0, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(15, 15, 30, 0.95);
}

.nav-links-row {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.nav-link-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-link-item:hover {
    background: rgba(138, 43, 226, 0.3);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
}

.nav-icon {
    font-size: 1.2rem;
}

/* ============================================
   Section Intro
   ============================================ */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: var(--spacing-md);
}

.controls-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   Gameplay Video Section
   ============================================ */
.gameplay-video {
    padding: var(--spacing-xxl) 0;
    background: var(--dark);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Community Showcase Slideshow
   ============================================ */
.showcase-slideshow {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(255, 0, 255, 0.3));
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.slideshow-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slideshow-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
}

.slide-battle-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.slide-battle-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.slide-battle-badge.THEME { background: var(--secondary); color: white; }
.slide-battle-badge.WORD { background: var(--primary); color: white; }
.slide-battle-badge.FREE { background: var(--accent); color: var(--darker); }
.slide-battle-badge.BATTLE { background: #9b59b6; color: white; }
.slide-battle-badge.SPOT { background: linear-gradient(135deg, #3498db, #2980b9); color: white; }
.slide-battle-badge.fresh { background: linear-gradient(135deg, #00ff88, #00cc66); color: var(--darker); }
.slide-battle-badge.training { background: var(--secondary); color: white; }
.slide-battle-badge.timed { background: var(--primary); color: white; }
.slide-battle-badge.battle { background: #9b59b6; color: white; }
.slide-battle-badge.matchmaking { background: linear-gradient(135deg, var(--primary), #ff00ff); color: white; }
.slide-battle-badge.hall-of-fame { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #1a1a2e; font-weight: 700; }

.slide-battle-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.slide-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.slide-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.slide-rank.gold { background: linear-gradient(135deg, gold, #ffa500); color: #1a1a2e; }
.slide-rank.silver { background: linear-gradient(135deg, silver, #c0c0c0); color: #1a1a2e; }
.slide-rank.bronze { background: linear-gradient(135deg, #cd7f32, #b87333); color: #1a1a2e; }

.slide-author-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
}

.slide-votes {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1rem;
    color: var(--accent);
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 10;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.slideshow-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.slideshow-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slideshow-arrow:hover {
    background: var(--primary);
}

.slideshow-arrow.prev { left: var(--spacing-md); }
.slideshow-arrow.next { right: var(--spacing-md); }

.slideshow-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.7);
    gap: var(--spacing-md);
}

.slideshow-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.slideshow-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.7);
    gap: var(--spacing-md);
    text-align: center;
    padding: var(--spacing-xl);
}

.slideshow-empty-icon {
    font-size: 3rem;
    opacity: 0.5;
}

/* ============================================
   Concept Tagline
   ============================================ */
.concept-tagline {
    position: relative;
    text-align: center;
    padding: var(--spacing-xxl) 0;
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
}

.tagline-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(255, 0, 255, 0.3), rgba(138, 43, 226, 0.2), transparent 70%);
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.tagline-text {
    position: relative;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.tagline-word {
    display: inline-block;
    animation: wordFadeIn 0.8s ease-out both;
}

.tagline-word.word-1 {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.8), 0 0 60px rgba(255, 107, 107, 0.4);
    animation-delay: 0.2s;
}

.tagline-word.word-2 {
    color: var(--secondary);
    text-shadow: 0 0 30px rgba(78, 205, 196, 0.8), 0 0 60px rgba(78, 205, 196, 0.4);
    animation-delay: 0.5s;
}

.tagline-word.word-3 {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(255, 230, 109, 0.8), 0 0 60px rgba(255, 230, 109, 0.4);
    animation-delay: 0.8s;
}

@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.tagline-sub {
    position: relative;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 1.2s both;
}

/* ============================================
   Controls Info
   ============================================ */
.controls-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.controls-info h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--accent);
}

.control-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.control-item {
    background: var(--darker);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.control-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.control-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.control-item h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary);
}

.control-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: var(--spacing-xxl) 0;
    background: var(--darker);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--dark);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    position: relative;
}

.feature-cta {
    display: inline-block;
    margin-top: var(--spacing-md);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-cta {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent);
}

/* ============================================
   Characters Section
   ============================================ */
.characters {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 1), rgba(15, 15, 30, 1));
}

.characters-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.character-preview {
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.character-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.character-name {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    padding: var(--spacing-sm) var(--spacing-md) 0;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    z-index: 2;
}

.character-role {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.character-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
    pointer-events: none;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: var(--darker);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 0, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--accent);
}

.testimonial-info p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--gray);
}

.testimonial-rating {
    margin-left: auto;
    color: #ffd700;
    font-size: 0.9rem;
}

/* ============================================
   Community Section
   ============================================ */
.community-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--darker), var(--dark));
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

/* Live Stats Card */
.live-stats-card {
    background: var(--darker);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.live-stats-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 5px #00ff00; }
    50% { opacity: 0.5; box-shadow: 0 0 15px #00ff00; }
}

.stats-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.stat-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent);
}

.stat-value.online {
    color: #00ff00;
}

.stat-value.battles {
    color: var(--primary);
}

/* Discord Card */
.discord-card {
    background: linear-gradient(135deg, #5865F2, #7289da);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discord-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: discordShine 3s infinite;
}

@keyframes discordShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.discord-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.discord-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.discord-members {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: white;
    color: #5865F2;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.discord-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.discord-btn svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(255, 0, 255, 0.7));
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-character {
    position: absolute;
    bottom: 0;
    height: 350px;
    width: auto;
    opacity: 0.3;
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.cta-char-left {
    left: 5%;
    transform: scaleX(-1);
}

.cta-char-right {
    right: 5%;
}

.final-cta:hover .cta-character {
    opacity: 0.5;
    filter: grayscale(0%);
}

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

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cta-tagline {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.cta-feature {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.btn-cta-main {
    font-size: 1.4rem;
    padding: var(--spacing-lg) var(--spacing-xxl);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(255, 107, 107, 0.5); }
    50% { box-shadow: 0 15px 60px rgba(255, 107, 107, 0.8); }
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--darker);
    padding: var(--spacing-lg) 0;
    text-align: center;
    color: var(--gray);
}

/* ============================================
   Feature Modal
   ============================================ */
.feature-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.feature-modal.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.feature-modal .modal-content {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    margin: 5vh auto;
    background: linear-gradient(135deg, var(--dark), var(--darker));
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 0, 255, 0.3);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.5);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 0, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--spacing-xxl);
    padding-right: var(--spacing-xl);
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.modal-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.detail-item {
    padding: var(--spacing-sm) 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.modal-image-item {
    background: var(--darker);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 0, 255, 0.1);
}

.modal-image-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.modal-image-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    background: rgba(0, 0, 0, 0.2);
}

.image-caption {
    padding: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.modal-cta {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 2px solid rgba(255, 0, 255, 0.2);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 767px) {
    .scroll-indicator {
        bottom: 15px;
    }

    .tagline-text {
        font-size: 2.2rem;
        letter-spacing: 2px;
        gap: var(--spacing-md);
    }

    .tagline-sub {
        font-size: 1rem;
        padding: 0 var(--spacing-md);
    }

    .tagline-glow {
        width: 300px;
        height: 150px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .feature-number {
        font-size: 1.8rem;
    }

    .feature-label {
        font-size: 0.75rem;
    }

    .hero-features {
        gap: var(--spacing-md);
    }

    .btn-hero {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .nav-link-item {
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .nav-icon {
        font-size: 1rem;
    }

    .quick-nav {
        position: relative;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    /* Modal responsive */
    .feature-modal .modal-content {
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-body {
        padding: var(--spacing-lg);
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .modal-description {
        font-size: 1rem;
    }

    .detail-item {
        font-size: 0.95rem;
    }

    .modal-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DISCLAIMER MODAL
   ============================================ */
.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.disclaimer-modal.active {
    opacity: 1;
    visibility: visible;
}

.disclaimer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.disclaimer-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(255, 107, 107, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.disclaimer-modal.active .disclaimer-content {
    transform: scale(1) translateY(0);
}

.disclaimer-header {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary), #ff8787);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.disclaimer-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.disclaimer-header h2 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-body {
    padding: var(--spacing-xl);
}

.disclaimer-main {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.disclaimer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.disclaimer-points {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.disclaimer-point {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.disclaimer-point .point-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.disclaimer-point span:last-child {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.disclaimer-point strong {
    color: var(--primary);
}

.disclaimer-footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
    padding: var(--spacing-md);
    background: rgba(78, 205, 196, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.disclaimer-footer {
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.disclaimer-checkbox {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    user-select: none;
}

.disclaimer-checkbox input {
    display: none;
}

.disclaimer-checkbox .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.disclaimer-checkbox input:checked + .checkmark {
    background: var(--secondary);
    border-color: var(--secondary);
}

.disclaimer-checkbox input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.disclaimer-btn {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

.disclaimer-btn:not(:disabled) {
    background: linear-gradient(135deg, var(--primary), #ff8787);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.disclaimer-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

@media (max-width: 767px) {
    .disclaimer-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }

    .disclaimer-header {
        padding: var(--spacing-lg);
    }

    .disclaimer-header h2 {
        font-size: 1.4rem;
    }

    .disclaimer-body {
        padding: var(--spacing-md);
    }

    .disclaimer-main {
        font-size: 1.1rem;
    }

    .disclaimer-text {
        font-size: 0.9rem;
    }

    .disclaimer-point {
        padding: var(--spacing-sm);
    }

    .disclaimer-point span:last-child {
        font-size: 0.85rem;
    }

    .disclaimer-footer {
        padding: var(--spacing-md);
    }

    .disclaimer-checkbox {
        font-size: 0.8rem;
    }

    .disclaimer-btn {
        font-size: 1rem;
        padding: var(--spacing-md);
    }
}
