/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Hollywood Movie Theater Stage with Red Velvet Curtains */
body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    width: 200px;
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
}

/* Left Curtain */
body::before {
    left: 0;
    background: 
        /* Curtain folds and shadows */
        repeating-linear-gradient(
            90deg,
            #8B0000 0px,
            #DC143C 15px,
            #B22222 30px,
            #8B0000 45px,
            #660000 60px,
            #8B0000 75px,
            #DC143C 90px,
            #B22222 105px,
            #8B0000 120px
        ),
        /* Deep shadow on the right edge */
        linear-gradient(
            90deg,
            #8B0000 0%,
            #DC143C 40%,
            #B22222 70%,
            #330000 100%
        );
    box-shadow: 
        inset -20px 0 40px rgba(0, 0, 0, 0.8),
        20px 0 50px rgba(0, 0, 0, 0.5);
    border-right: 3px solid #330000;
}

/* Right Curtain */
body::after {
    right: 0;
    background: 
        /* Curtain folds and shadows */
        repeating-linear-gradient(
            270deg,
            #8B0000 0px,
            #DC143C 15px,
            #B22222 30px,
            #8B0000 45px,
            #660000 60px,
            #8B0000 75px,
            #DC143C 90px,
            #B22222 105px,
            #8B0000 120px
        ),
        /* Deep shadow on the left edge */
        linear-gradient(
            270deg,
            #8B0000 0%,
            #DC143C 40%,
            #B22222 70%,
            #330000 100%
        );
    box-shadow: 
        inset 20px 0 40px rgba(0, 0, 0, 0.8),
        -20px 0 50px rgba(0, 0, 0, 0.5);
    border-left: 3px solid #330000;
}

/* Stage Floor Effect */
body {
    background: 
        /* Spotlight effect from top */
        radial-gradient(ellipse 80% 30% at center 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        /* Dark theater background */
        linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

/* Main Content Area - Stage */
.main-content {
    margin: 0 240px; /* Increased to 240px to ensure content is well within curtains */
    padding: 1rem;
    position: relative;
    z-index: 1;
    max-width: calc(100vw - 480px); /* Ensure content never exceeds available space */
}

/* Navigation */
.main-nav {
    background: 
        /* Curtain fold pattern matching side curtains */
        repeating-linear-gradient(
            90deg,
            #8B0000 0px,
            #DC143C 15px,
            #B22222 30px,
            #8B0000 45px,
            #660000 60px,
            #8B0000 75px,
            #DC143C 90px,
            #B22222 105px,
            #8B0000 120px
        ),
        /* Base red gradient with depth */
        linear-gradient(
            180deg,
            #DC143C 0%,
            #B22222 30%,
            #8B0000 70%,
            #660000 100%
        );
    border-bottom: 3px solid #330000;
    /* Add curtain-like shadow at bottom */
    box-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.8),
        inset 0 -10px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1001;
    width: 100%;
    /* Remove the hanging drape pseudo-element that was causing issues */
}

.nav-container {
    /* Position container to overlap slightly with curtains to eliminate gaps */
    margin-left: 197px; /* Start 3px before left curtain ends to cover border */
    margin-right: 197px; /* End 3px before right curtain starts to cover border */
    padding: 0 2rem; /* Internal padding for content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    /* Use exact width between curtains plus overlap */
    width: calc(100vw - 394px - 4rem); /* Adjusted for 3px overlap on each side */
    box-sizing: border-box;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000; /* Black color for the logo */
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8); /* White shadow for contrast on red background */
    /* Remove manual margin, let flexbox handle positioning */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Reduced gap for better fit */
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 0.95rem; /* Slightly smaller for better fit */
}

.nav-link:hover {
    color: #DC143C;
    background: rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem; /* Reduced padding */
    background: 
        radial-gradient(ellipse 60% 40% at center, rgba(220, 20, 60, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.8) 100%);
    color: #ffffff;
    position: relative;
}

.hero h1 {
    font-size: 2.5rem; /* Reduced from 3.5rem */
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px; /* Reduced letter spacing */
}

.hero-subtitle {
    font-size: 1.1rem; /* Reduced from 1.3rem */
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1rem; /* Reduced from 1.1rem */
    margin-bottom: 2rem;
    color: #ffffff;
    max-width: 500px; /* Reduced from 600px */
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, #B22222 0%, #8B0000 100%);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: 2px solid #DC143C;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-secondary:hover {
    background: #DC143C;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* Sections */
.section {
    padding: 4rem 2rem;
    background: #000000;
    color: #ffffff;
}

/* General Section Styling */
.section {
    text-align: center; /* Center all section content */
    padding: 2.5rem 1rem; /* Standardized padding */
    margin: 0 auto 2.5rem auto; /* Standardized margin */
    max-width: calc(100vw - 480px); /* Ensure sections fit between curtains */
}

.section h2 {
    text-align: center;
    font-size: 2rem; /* Reduced from 2.5rem */
    margin-bottom: 2rem; /* Reduced margin */
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section h3 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.3rem; /* Reduced from 1.5rem */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    text-align: center; /* Center h3 elements */
}

.section p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center; /* Center paragraph text */
    max-width: 800px; /* Limit width for better readability */
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 2rem 1rem 1.5rem; /* Reduced padding */
    border-top: 3px solid #DC143C;
    margin-top: 0;
    /* Ensure footer content is contained between curtains */
    max-width: calc(100vw - 480px);
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Center all footer content */
}

.footer h3 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.2rem; /* Reduced size */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    text-align: center; /* Center footer headings */
}

.footer p,
.footer li {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center; /* Center footer text */
    max-width: 600px; /* Limit width */
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem; /* Smaller text for better fit */
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #DC143C;
}

/* Footer sections container */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer lists */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer li {
    margin-bottom: 0.5rem;
}

/* Slogan */
.slogan {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.2rem; /* Reduced from 1.4rem */
    font-weight: 600;
    margin: 1rem 0 0 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    font-style: italic;
}

section p {
    font-size: 1rem; /* Reduced from 1.1rem */
    margin-bottom: 1.5rem;
    text-align: center;
    color: #e0e0e0;
    max-width: 700px; /* Add max-width for better fit */
    margin-left: auto;
    margin-right: auto;
}

section p:last-child {
    margin-bottom: 0;
}

/* Advantage Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin-top: 2rem;
    justify-items: center; /* Center grid items */
}

.advantage-card {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 10px;
    border-left: 4px solid #DC143C;
    text-align: center; /* Center card content */
    border: 1px solid #555;
    max-width: 350px; /* Limit card width */
}

.advantage-card h3 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.2rem; /* Reduced font size */
}

.advantage-card p {
    margin: 0;
    font-size: 0.9rem; /* Reduced font size */
    line-height: 1.5;
    color: #e0e0e0;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Reduced min-width */
    gap: 1.5rem;
    margin-top: 2rem;
    justify-items: center; /* Center grid items */
}

.security-item {
    background: #333;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #555;
    text-align: center; /* Center content */
    max-width: 300px; /* Limit width */
}

.security-item h4 {
    color: #DC143C;
    margin-bottom: 0.5rem;
    font-size: 1.1rem; /* Add font size */
}

.security-item p {
    margin: 0;
    font-size: 0.85rem; /* Reduced font size */
    color: #e0e0e0;
}

/* Business Features */
.business-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem 0;
    justify-items: center; /* Center grid items */
}

.business-feature {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 10px;
    text-align: center; /* Center content */
    border: 1px solid #555;
    max-width: 320px; /* Limit width */
}

.business-feature h4 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.1rem; /* Add font size */
}

.business-feature p {
    margin: 0;
    color: #e0e0e0;
    font-size: 0.9rem; /* Add font size */
}

/* Steps */
.steps {
    display: flex;
    justify-content: center;
    gap: 2rem; /* Reduced gap for better spacing */
    margin: 3rem auto; /* Center with auto margins */
    flex-wrap: wrap;
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    padding: 0 1rem; /* Add padding for mobile */
}

.step {
    text-align: center;
    max-width: 220px; /* Reduced max-width */
    flex: 1;
    min-width: 200px; /* Add min-width for consistency */
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #DC143C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.step h4 {
    color: #DC143C;
    margin-bottom: 0.5rem;
}

.step h3 {
    color: #DC143C;
    margin-bottom: 0.5rem;
}

.step p {
    color: #e0e0e0;
}

/* Links */
a {
    color: #DC143C;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Core Features */
.core-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.feature-highlight {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 10px;
    border: 1px solid #555;
    text-align: center;
    max-width: 280px; /* Limit width */
    width: 100%;
}

.feature-highlight h4 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.1rem; /* Reduced size */
}

.feature-highlight p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem; /* Reduced size */
    color: #e0e0e0;
}

/* Price Features */
.price-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.price-feature {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 10px;
    border-left: 4px solid #DC143C;
    text-align: center; /* Center content */
    border: 1px solid #555;
    max-width: 320px; /* Limit width */
    width: 100%;
}

.price-feature h4 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.1rem; /* Reduced size */
}

.price-feature p {
    margin: 0;
    font-size: 0.9rem; /* Reduced size */
    line-height: 1.5;
    color: #e0e0e0;
}

/* Wallet Grid */
.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.wallet-card {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 10px;
    border-left: 4px solid #DC143C;
    text-align: center; /* Center content */
    border: 1px solid #555;
    max-width: 300px; /* Limit width */
    width: 100%;
}

.wallet-card h4 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.1rem; /* Add consistent sizing */
}

.wallet-card p {
    margin: 0;
    font-size: 0.9rem; /* Add consistent sizing */
    line-height: 1.5;
    color: #e0e0e0;
}

/* Mining Details */
.mining-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mining-feature {
    background: #333;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #DC143C;
    text-align: left;
    border: 1px solid #555;
}

.mining-feature h4 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.mining-feature p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
}

/* Wallet Menu Grid */
.wallet-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.menu-item {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 10px;
    border: 1px solid #555;
    text-align: center; /* Center content */
    max-width: 300px; /* Limit width */
    width: 100%;
}

.menu-item h4 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.1rem; /* Reduced size */
}

.menu-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
}

/* Network Features */
.network-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.network-feature {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 10px;
    border-left: 4px solid #DC143C;
    text-align: center; /* Center content */
    border: 1px solid #555;
    max-width: 280px; /* Limit width */
    width: 100%;
}

.network-feature h4 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.1rem; /* Reduced size */
}

.network-feature p {
    margin: 0;
    font-size: 0.9rem; /* Reduced size */
    line-height: 1.5;
    color: #e0e0e0;
}

/* Anonymous Transactions Section */
.anonymous-transactions {
    text-align: center;
    padding: 2.5rem 1rem; /* Standardized padding */
    max-width: calc(100vw - 480px);
    margin: 0 auto 2.5rem auto; /* Standardized margin */
}

.anonymous-transactions h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.anonymous-transactions p {
    text-align: center;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

/* Privacy Features */
.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.privacy-feature {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 10px;
    border-left: 4px solid #DC143C;
    text-align: center; /* Center content */
    border: 1px solid #555;
    max-width: 320px; /* Limit width */
    width: 100%;
}

.privacy-feature h4 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.1rem; /* Reduced size */
    text-align: center; /* Center the privacy titles */
}

.privacy-feature p {
    margin: 0;
    font-size: 0.9rem; /* Reduced size */
    line-height: 1.5;
    color: #e0e0e0;
}

/* Reasons List */
.reasons-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Increased gap for better spacing */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.reason-item {
    background: #333;
    padding: 1.5rem; /* Increased padding */
    border-radius: 8px;
    border-left: 3px solid #DC143C;
    font-size: 0.9rem; /* Slightly reduced */
    line-height: 1.4;
    color: #e0e0e0;
    border: 1px solid #555;
    text-align: center; /* Center content */
    max-width: 350px; /* Limit width */
    width: 100%;
}

.reason-item strong {
    color: #DC143C;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: #e0e0e0;
    background: #2a2a2a;
    margin-top: 2rem;
    margin-left: 150px;
    margin-right: 150px;
    border: 1px solid #444;
    border-radius: 15px;
}

footer p {
    font-size: 1.2rem; /* Base size increased by 20% */
}

footer h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

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

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #DC143C;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }

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

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

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }

    section h2 {
        font-size: 1.8rem;
        white-space: normal;
    }

    .slogan {
        font-size: 1.1rem;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    .advantage-card p {
        text-align: center;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .security-item p {
        text-align: center;
    }

    .business-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .business-feature p {
        text-align: center;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .core-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .price-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .price-feature p {
        text-align: center;
    }

    .wallet-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .wallet-card p {
        text-align: center;
    }

    .mining-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .mining-feature p {
        text-align: center;
    }

    .wallet-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .network-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .network-feature p {
        text-align: center;
    }

    .privacy-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .privacy-feature p {
        text-align: center !important;
    }

    .kyc-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .kyc-feature p {
        text-align: center !important;
    }

    .supply-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .supply-feature p {
        text-align: center !important;
    }

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

    .feature-highlight p {
        text-align: center;
    }

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

    .staking-feature p {
        text-align: center;
    }

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

    .staking-benefit p {
        text-align: center;
    }

    .reasons-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

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

    /* Make all h3 and h4 headings centered in mobile */
    section h3, section h4 {
        text-align: center;
    }

    /* Ensure strong elements are centered */
    section strong {
        text-align: center;
    }

    footer p {
        white-space: nowrap;
        font-size: 1.08rem; /* 0.9rem increased by 20% */
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 1.5rem 1rem;
    }

    .advantage-card,
    .security-item,
    .business-feature {
        padding: 1rem;
    }

    .feature-highlight,
    .price-feature,
    .wallet-card,
    .mining-feature,
    .menu-item,
    .network-feature {
        padding: 1rem;
    }

    .reason-item {
        padding: 0.8rem;
        font-size: 0.9rem;
        text-align: center;
    }

    footer p {
        white-space: nowrap;
        font-size: 0.96rem; /* 0.8rem increased by 20% */
    }
}

@media (max-width: 360px) {
    footer p {
        white-space: nowrap;
        font-size: 0.9rem; /* 0.75rem increased by 20% */
    }
}

/* Features Section */
.features {
    text-align: center;
    padding: 2.5rem 1rem; /* Standardized padding */
    max-width: calc(100vw - 480px);
    margin: 0 auto 2.5rem auto; /* Standardized margin */
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.feature-card {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 15px;
    text-align: center;
    border: 1px solid #555;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px; /* Limit width */
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.feature-card h3 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.tech-card {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 15px;
    text-align: center;
    border: 1px solid #555;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px; /* Limit width */
    width: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

/* Wallet Technology Section */
.wallet-tech {
    text-align: center;
    padding: 2.5rem 1rem; /* Standardized padding */
    max-width: calc(100vw - 480px);
    margin: 0 auto 2.5rem auto; /* Standardized margin */
}

.wallet-tech h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.tech-card h3 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.2rem; /* Reduced size */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tech-card p {
    color: #e0e0e0;
    font-size: 0.9rem; /* Reduced size */
    line-height: 1.5;
    margin: 0;
}

/* Network Stats Section */
.network-stats {
    text-align: center;
    padding: 3rem 1rem;
    max-width: calc(100vw - 480px);
    margin: 0 auto 3rem auto;
}

.network-stats h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.stat-item {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 15px;
    text-align: center;
    border: 1px solid #555;
    max-width: 250px; /* Limit width */
    width: 100%;
}

.stat-item h3 {
    color: #DC143C;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Getting Started Section */
.getting-started {
    text-align: center;
    padding: 2.5rem 1rem; /* Standardized padding */
    max-width: calc(100vw - 480px);
    margin: 0 auto 2.5rem auto; /* Standardized margin */
}

.getting-started h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

/* Download Section */
.download-section {
    margin-top: 2.5rem; /* Standardized margin */
    text-align: center; /* Center the section */
}

.download-section h3 {
    text-align: center;
    color: #DC143C;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced min-width */
    gap: 1.5rem; /* Reduced gap */
    margin: 2rem auto; /* Center with auto margins */
    max-width: calc(100vw - 520px); /* Ensure it fits between curtains */
    justify-items: center; /* Center grid items */
}

.download-item {
    background: #333;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 15px;
    text-align: center;
    border: 1px solid #555;
    max-width: 320px; /* Limit width */
    width: 100%;
}

.download-item h4 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.download-item p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #DC143C;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
    background: #B22222;
}

/* Privacy Section */
.privacy-section {
    text-align: center;
    padding: 2.5rem 1rem; /* Standardized padding */
    max-width: calc(100vw - 480px);
    margin: 0 auto 2.5rem auto; /* Standardized margin */
}

/* Privacy Content */
.privacy-content {
    display: block; /* Changed from grid to block for centering */
    text-align: center;
    max-width: calc(100vw - 520px);
    margin: 0 auto;
}

.privacy-text {
    text-align: center; /* Changed from left to center */
}

.privacy-text h2 {
    text-align: center; /* Changed from left to center */
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.privacy-text ul {
    text-align: left; /* Keep lists left-aligned for readability */
    list-style: none;
    padding: 0;
    max-width: 600px; /* Limit width for better readability */
    margin: 0 auto 2rem auto; /* Center the list container */
}

.privacy-text li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.privacy-text li::before {
    content: "✓";
    color: #DC143C;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-visual {
    text-align: center;
    margin: 2rem auto; /* Center the visual element */
    max-width: 400px; /* Limit width */
}

/* Business Integration Section */
.business-integration {
    text-align: center;
    padding: 2.5rem 1rem; /* Standardized padding */
    max-width: calc(100vw - 480px);
    margin: 0 auto 2.5rem auto; /* Standardized margin */
}

.business-integration h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Integration Content */
.integration-content {
    text-align: center; /* Changed from left to center */
    max-width: calc(100vw - 520px);
    margin: 0 auto;
}

.integration-text {
    text-align: center; /* Changed from left to center */
}

.integration-text h3 {
    color: #DC143C;
    margin-bottom: 1rem;
    text-align: center; /* Changed from left to center */
}

.integration-text ul {
    text-align: left; /* Keep lists left-aligned for readability */
    list-style: none;
    padding: 0;
    max-width: 600px; /* Limit width for better readability */
    margin: 0 auto 2rem auto; /* Center the list container */
}

.integration-text li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.integration-text li::before {
    content: "•";
    color: #DC143C;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Theatrical Stage Lighting Effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 50px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    z-index: 2;
}

/* Spotlight Effect on Content */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse 70% 50% at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.section {
    position: relative;
}

/* All Card Elements - Dark Theater Theme */
.feature-card,
.tech-card,
.stat-item,
.advantage-card,
.security-item,
.business-feature,
.core-feature,
.price-feature,
.wallet-card,
.menu-item,
.network-feature,
.mining-feature,
.privacy-feature,
.kyc-feature,
.supply-feature,
.staking-option,
.staking-benefit,
.reason-item {
    background: #111111 !important;
    color: #ffffff !important;
    border: 1px solid #333333 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
}

.feature-card:hover,
.tech-card:hover,
.stat-item:hover,
.advantage-card:hover,
.security-item:hover,
.business-feature:hover,
.core-feature:hover,
.price-feature:hover,
.wallet-card:hover,
.menu-item:hover,
.network-feature:hover,
.mining-feature:hover,
.privacy-feature:hover,
.kyc-feature:hover,
.supply-feature:hover,
.staking-option:hover,
.staking-benefit:hover,
.reason-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3) !important;
    border-color: #DC143C !important;
}

/* All Headings in Cards */
.feature-card h3,
.feature-card h4,
.tech-card h3,
.tech-card h4,
.stat-item h3,
.stat-item h4,
.advantage-card h3,
.advantage-card h4,
.security-item h3,
.security-item h4,
.business-feature h3,
.business-feature h4,
.core-feature h3,
.core-feature h4,
.price-feature h3,
.price-feature h4,
.wallet-card h3,
.wallet-card h4,
.menu-item h3,
.menu-item h4,
.network-feature h3,
.network-feature h4,
.mining-feature h3,
.mining-feature h4,
.privacy-feature h3,
.privacy-feature h4,
.kyc-feature h3,
.kyc-feature h4,
.supply-feature h3,
.supply-feature h4,
.staking-option h3,
.staking-option h4,
.staking-benefit h3,
.staking-benefit h4,
.reason-item h3,
.reason-item h4 {
    color: #DC143C !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
}

/* All Paragraphs in Cards */
.feature-card p,
.tech-card p,
.stat-item p,
.advantage-card p,
.security-item p,
.business-feature p,
.core-feature p,
.price-feature p,
.wallet-card p,
.menu-item p,
.network-feature p,
.mining-feature p,
.privacy-feature p,
.kyc-feature p,
.supply-feature p,
.staking-option p,
.staking-benefit p,
.reason-item p {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Grid Containers */
.features-grid,
.tech-grid,
.stats-grid,
.advantage-grid,
.security-grid,
.business-features,
.core-features,
.price-features,
.wallet-grid,
.menu-grid,
.network-features,
.mining-features,
.privacy-features,
.kyc-features,
.supply-features,
.staking-details,
.staking-benefits,
.reasons-list {
    background: transparent !important;
}

/* Stage Floor Pattern */
body::after {
    background-image: 
        /* Wood grain pattern for stage floor */
        repeating-linear-gradient(
            0deg,
            rgba(139, 69, 19, 0.1) 0px,
            rgba(160, 82, 45, 0.1) 2px,
            rgba(139, 69, 19, 0.1) 4px
        ),
        /* Original curtain design */
        repeating-linear-gradient(
            270deg,
            #8B0000 0px,
            #DC143C 15px,
            #B22222 30px,
            #8B0000 45px,
            #660000 60px,
            #8B0000 75px,
            #DC143C 90px,
            #B22222 105px,
            #8B0000 120px
        ),
        linear-gradient(
            270deg,
            #8B0000 0%,
            #DC143C 40%,
            #B22222 70%,
            #330000 100%
        );
}

/* Theater Ambiance - Subtle Red Glow */
.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 100% 50% at center, rgba(220, 20, 60, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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