:root {
    --primary-color: #8b0000;
    --primary-light: #b30000;
    --secondary-color: #1f1f24;
    --bg-dark: #0a0a0b;
    --text-main: #e0e0e0;
    --text-muted: #888;
    --glass-bg: rgba(20, 20, 25, 0.8);
    --shadow-glow: 0 0 20px rgba(139, 0, 0, 0.2);
}

/* Base Styles */
body.landing-page {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.title-cinzel {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
    margin-top: -70px; 
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.slide-content h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.dot.active {
    background: var(--primary-color);
    width: 60px;
}
.slider-arrow.next {
    right: 0;
    position: absolute;
    margin-right: 10px;
    bottom: 300px;
    opacity: 0.2;
    
}
.slider-arrow.prev {
    left: 0;
    position: absolute;
    margin-left: 10px;
    bottom: 300px;
    opacity: 0.2;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
}
.slider-arrow.prev:hover, .slider-arrow.next:hover {
    opacity: 1;
}

.slider-arrow {

    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Stats Banner */
.stats-banner {
    background: var(--secondary-color);
    padding: 3rem 0;
    border-top: 1px solid var(--dashboard-border);
    border-bottom: 1px solid var(--dashboard-border);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 40px #ff0000;
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 40px #ff0000;
    }
    to {
        text-shadow: 
            0 0 2px #fff,
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 30px #8b0000;
        color: #8b0000;
    }
}

.stat-desc {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(139, 0, 0, 0.05) 0%, transparent 70%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    perspective: 1000px;
}

.feature-card-wrapper {
    display: flex;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card-wrapper:hover {
    transform: translateY(-15px) rotateY(10deg);
}

/* Yu-Gi-Oh Card Styles */
.yugioh-card {
    width: 280px;
    height: 410px;
    padding: 12px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 0 10px rgba(0,0,0,0.5);
    background: #a67c52; /* Base brown for cards */
}

/* Card Types Colors */
.card-monster {background: linear-gradient(135deg, #b6b6b6 0%, #191919 100%); border: 3px solid #141414;};
.card-spell {   background: linear-gradient(135deg, #b60000 0%, #3a0404 100%); border: 3px solid #360000 };
.card-trap {    background: linear-gradient(135deg, #b60000 0%, #3a0404 100%); border: 3px solid #360000 };
.card-ritual {     background: linear-gradient(135deg, #b60000 0%, #3a0404 100%); border: 3px solid #360000  };

.card-inner {
    height: 100%;
    border: 2px solid rgba(0,0,0,0.3);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(0,0,0,0.1);
}

.card-header {
    background: rgba(255,255,255,0.8);
    border: 2px solid #555;
    padding: 4px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.card-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 900;
    color: #111;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.card-attribute {
    font-size: 1.2rem;
    background: #fff;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #333;
}

.card-level {
    display: flex;
    justify-content: flex-end;
    padding: 2px 5px;
}

.star {
    color: #ffcc00;
    font-size: 0.8rem;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.card-image-container {
    max-height: 200px;
    flex-grow: 1;
    background: #333;
    border: 4px solid #4b4a4a;
    margin: 2px 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0,0,0,1);
}

.card-art-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #444 0%, #111 100%);
    overflow: hidden;
}

.card-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.2) contrast(1.1);
    transition: transform 0.5s ease;
}

.feature-card-wrapper:hover .card-art-img {
    transform: scale(1.1);
    filter: sepia(0) contrast(1.2);
}

.card-art-bg .feature-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.card-body {
    background: #0e0e0e; /* Classic parchment look */
    border: 3px solid #494949;
    padding: 8px;
    min-height: 110px;
    color: #222;
}

.card-type {
    color: #e6e6e6;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 4px;
    border-bottom: 1px solid #252525;
    padding-bottom: 2px;
}

.card-description {
    color: #707070;
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

/* Card Holographic Effect */
.yugioh-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(125deg, transparent 0%, rgba(255,255,255,0.05) 45%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.05) 55%, transparent 100%);
    pointer-events: none;
    border-radius: 8px;
}

/* Info Section */
.info-section {
    padding: 6rem 0;
    background: rgba(255,255,255,0.02);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.info-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.image-placeholder {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--dashboard-border);
}

.image-placeholder img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.image-placeholder:hover img {
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--dashboard-card-bg);
    border: 1px solid var(--dashboard-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 0, 0, 0.1);
}

.pricing-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.05) 0%, var(--dashboard-card-bg) 100%);
    box-shadow: 0 0 25px rgba(139, 0, 0, 0.3);
    transform: scale(1.05);
}

.pricing-card.selected:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 900;
}

.plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.plan-features li.disabled::before {
    content: '×';
    color: var(--text-muted);
}

/* CTA Section Update */
.cta-section {
    padding: 8rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color), #121214);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--dashboard-border);
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    /* border: 1px solid rgba(255,255,255,0.3); */
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Footer */
.main-footer {
    background: #050506;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--dashboard-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: #ff0000;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #ff0000,
        0 0 20px #ff0000;
    animation: neonPulseLogo 2s infinite alternate;
}

@keyframes neonPulseLogo {
    from {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #ff0000,
            0 0 20px #ff0000;
    }
    to {
        text-shadow: 
            0 0 2px #fff,
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 15px #8b0000;
        color: #8b0000;
    }
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dashboard-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Glow Effects */
.shadow-glow {
    box-shadow: var(--shadow-glow);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .info-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
    }
}
