/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Cera+Pro:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cera Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

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

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, #0bc700 0%, #e9ed05 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.green-text {
    color: #0bc700;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #0bc700;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Download Button Styling */
.download-btn {
    background: linear-gradient(135deg, #e9ed05 0%, #0bc700 50%, #e9ed05 100%);
    background-size: 200% 200%;
    color: #000 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border: 2px solid transparent !important;
    box-shadow: 0 4px 15px rgba(233, 237, 5, 0.4), 0 0 20px rgba(11, 199, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    animation: shimmer 2s ease-in-out infinite !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

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

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

.download-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(233, 237, 5, 0.6), 0 0 30px rgba(11, 199, 0, 0.5) !important;
    background-position: right center !important;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    padding-top: 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(90deg, #e9ed05 0%, #0bc700 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(11, 199, 0, 0.4);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 199, 0, 0.6);
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: #0bc700;
    border-color: #0bc700;
}

.btn-secondary:hover {
    background: #0bc700;
    color: white;
    transform: translateY(-2px);
}

/* App Screenshot */
.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.app-screenshot {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
    max-width: 300px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

/* Override animation and tilt for video container */
.hero-image .app-screenshot {
    transform: none !important;
    animation: none !important;
}

.screenshot-img,
.hero-video {
    width: 100%;
    height: auto;
    border-radius: 25px;
    object-fit: contain;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #000;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.section-header p {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Prediction Categories Flash Video */
.prediction-flash-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.prediction-flash-video {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #111;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Main V pattern - diagonal lines creating stylized V shapes */
        linear-gradient(45deg, transparent 30%, rgba(50, 50, 50, 0.08) 35%, rgba(50, 50, 50, 0.08) 40%, transparent 45%),
        linear-gradient(-45deg, transparent 30%, rgba(50, 50, 50, 0.08) 35%, rgba(50, 50, 50, 0.08) 40%, transparent 45%),
        /* Secondary V pattern - offset for depth */
        linear-gradient(45deg, transparent 60%, rgba(50, 50, 50, 0.06) 65%, rgba(50, 50, 50, 0.06) 70%, transparent 75%),
        linear-gradient(-45deg, transparent 60%, rgba(50, 50, 50, 0.06) 65%, rgba(50, 50, 50, 0.06) 70%, transparent 75%),
        /* Subtle geometric accents */
        radial-gradient(ellipse at 25% 25%, rgba(45, 45, 45, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse at 75% 75%, rgba(45, 45, 45, 0.05) 0%, transparent 70%);
    background-size: 80px 80px, 80px 80px, 120px 120px, 120px 120px, 100px 100px, 100px 100px;
    background-position: 0 0, 40px 40px, 60px 60px, 0 0, 20px 20px, 80px 80px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 199, 0, 0.2);
    border-color: rgba(11, 199, 0, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* VerseCoin Airdrop Section */
.airdrop-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.airdrop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(11, 199, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.airdrop-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.airdrop-text {
    max-width: 800px;
}

.airdrop-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(11, 199, 0, 0.3);
}

.airdrop-description {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 0;
    font-weight: 400;
}

.airdrop-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.airdrop-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #e9ed05 0%, #0bc700 50%, #e9ed05 100%);
    background-size: 200% 200%;
    color: #000;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 30px rgba(233, 237, 5, 0.4), 0 0 40px rgba(11, 199, 0, 0.3);
    transition: all 0.4s ease;
    animation: airdropShimmer 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

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

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

.airdrop-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 237, 5, 0.6), 0 0 60px rgba(11, 199, 0, 0.5);
    background-position: right center;
}

.airdrop-btn-text {
    position: relative;
    z-index: 2;
}

.airdrop-btn-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    animation: rocketBounce 2s ease-in-out infinite;
}

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

@keyframes rocketBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Design for Airdrop Section */
@media (max-width: 768px) {
    .airdrop-title {
        font-size: 2.5rem;
    }
    
    .airdrop-description {
        font-size: 1.1rem;
    }
    
    .airdrop-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .airdrop-title {
        font-size: 2rem;
    }
    
    .airdrop-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #000;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #111;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(11, 199, 0, 0.2);
    border-color: rgba(11, 199, 0, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(11, 199, 0, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #0bc700;
    transition: transform 0.3s ease;
    user-select: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #ccc;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    position: relative;
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.social-proof-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.social-proof-link:hover {
    transform: translateY(-2px);
}

.social-proof-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 8px;
}

/* Individual logo container backgrounds */
.social-proof-item:nth-child(1) .social-proof-logo {
    background: #30323E; /* Betting startups logo background */
}

.social-proof-item:nth-child(3) .social-proof-logo {
    background: #019EFF; /* Starties logo background */
}

.social-proof-item:nth-child(5) .social-proof-logo {
    background: #f8f9fa; /* Light gray background for sd.io logo */
}

.social-proof-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(11, 199, 0, 0.3);
    transform: translateY(-2px);
}

/* Individual hover states to maintain background colors */
.social-proof-item:nth-child(1) .social-proof-logo:hover {
    background: #3a3c48; /* Slightly lighter version of #30323E on hover */
}

.social-proof-item:nth-child(3) .social-proof-logo:hover {
    background: #0088cc; /* Slightly darker version of #019EFF on hover */
}

.social-proof-item:nth-child(5) .social-proof-logo:hover {
    background: #e9ecef; /* Slightly darker light gray background on hover */
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.social-proof-logo:hover .partner-logo {
    filter: brightness(1.1);
}

.social-proof-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.social-proof-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-proof-name {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.social-proof-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
    flex-shrink: 0;
}

/* Responsive Design for Social Proof Section */
@media (max-width: 768px) {
    .social-proof-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .social-proof-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .social-proof-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    }
    
    .social-proof-logo {
        width: 70px;
        height: 50px;
        padding: 6px;
    }
    
    .partner-logo {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    .social-proof-section {
        padding: 2rem 0;
    }
    
    .social-proof-content {
        gap: 1.5rem;
    }
    
    .social-proof-name {
        font-size: 0.9rem;
    }
    
    .social-proof-label {
        font-size: 0.8rem;
    }
}

/* Download Section with Footer */
.download {
    padding: 6rem 0 0 0;
    background: linear-gradient(135deg, #0bc700 0%, #e9ed05 100%);
    color: #000000;
    position: relative;
    overflow: hidden;
}

.download-content {
    text-align: center;
    margin-bottom: 4rem;
}

.download h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.download-btn {
    display: block;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px);
}

.download-btn img {
    height: 60px;
    width: auto;
}

/* Footer Content within Download Section */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px 20px 0 0;
    padding: 3rem 2rem 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 199, 0, 0.2);
}

/* Add grey background behind footer for help center page */
.help-center + .footer {
    background: #000000;
    padding-top: 0;
}

.help-center + .footer .footer-content {
    margin: 0 2rem;
}

/* Footer positioning for legal pages */
.legal-content + .footer {
    margin-top: 2rem;
    background: #000;
}

.legal-content + .footer .footer-content {
    border-radius: 20px 20px 0 0;
    margin: 0 2rem;
    padding-top: 3rem;
    background: rgba(0, 0, 0, 0.9);
}

/* Ensure proper page height for legal pages */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-content {
    flex: 1;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0bc700;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #0bc700;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(11, 199, 0, 0.1);
    border: 1px solid rgba(11, 199, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0bc700;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #0bc700;
    color: white;
    border-color: #0bc700;
    transform: translateY(-2px);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #0bc700;
}

.separator {
    color: #666;
    font-weight: 300;
}

.footer-disclaimer {
    text-align: center;
}

.footer-disclaimer p {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

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

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

@keyframes float {
    0%, 100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-20px);
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prediction-flash-video {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .nav-logo-img {
        width: 28px;
        height: 28px;
    }
    
    .nav-logo h2 {
        font-size: 1.25rem;
    }
    
    .footer-logo-img {
        width: 32px;
        height: 32px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .app-screenshot {
        transform: none;
        scale: 0.8;
        max-width: 240px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .prediction-flash-container {
        margin: 2rem 0;
    }
    
    .prediction-flash-video {
        max-width: 300px;
        border-radius: 15px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-nav {
        gap: 1.5rem;
    }
    
    .legal-links {
        gap: 0.5rem;
    }
    
    .legal-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        width: 24px;
        height: 24px;
    }
    
    .nav-logo h2 {
        font-size: 1.125rem;
    }
    
    .footer-logo-img {
        width: 28px;
        height: 28px;
    }
    
    .footer-logo h3 {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .footer-content {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-logo-section {
        gap: 1rem;
    }
    
    .footer-nav {
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .legal-links {
        gap: 0.25rem;
    }
    
    .legal-links a {
        font-size: 0.75rem;
    }
}

/* Smooth scrolling for iOS */
@media (max-width: 768px) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}

/* Parlay Anything Section */
.parlay-section {
    background: #000;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.parlay-content {
    max-width: 1400px;
    margin: 0 auto;
}

.parlay-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: white;
    letter-spacing: -0.02em;
}

.phone-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    height: 600px;
}

.parlay-phone {
    position: absolute;
    transition: all 0.5s ease;
}

/* Fan layout - Left phone tilted left */
.parlay-phone:nth-child(1) {
    left: 15%;
    transform: rotateY(-25deg) rotateZ(-15deg) translateY(-20px);
}

/* Center phone - Upright and centered */
.parlay-phone:nth-child(2) {
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    z-index: 10;
}

/* Right phone tilted right */
.parlay-phone:nth-child(3) {
    right: 15%;
    transform: rotateY(25deg) rotateZ(15deg) translateY(-20px);
}

/* Hover effects with enhanced transforms */
.parlay-phone:nth-child(1):hover {
    transform: rotateY(-20deg) rotateZ(-10deg) translateY(-30px) scale(1.05);
}

.parlay-phone:nth-child(2):hover {
    transform: translateX(-50%) translateY(-10px) scale(1.05);
}

.parlay-phone:nth-child(3):hover {
    transform: rotateY(20deg) rotateZ(10deg) translateY(-30px) scale(1.05);
}

.phone-frame {
    width: 280px;
    height: 560px;
    position: relative;
}

.parlay-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* LeagueSync Section */
.leaguesync-section {
    background: #000;
    color: white;
    padding: 4rem 0;
}

.leaguesync-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.leaguesync-text {
    flex: 1;
    max-width: 600px;
}

.leaguesync-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.leaguesync-text p {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.leaguesync-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.leaguesync-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.bullet-green {
    width: 8px;
    height: 8px;
    background-color: #0bc700;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    flex-shrink: 0;
}

.bullet-yellow {
    width: 8px;
    height: 8px;
    background-color: #e9ed05;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    flex-shrink: 0;
}

.leaguesync-phone {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    position: relative;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sync League Section */
.sync-league-section {
    background: #000;
    color: white;
    padding: 4rem 0;
}

.sync-league-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sync-league-text {
    flex: 1;
    max-width: 600px;
}

.sync-league-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sync-league-text p {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.platform-support {
    margin: 2rem 0;
}

.platform-support h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.platform-icons {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.platform-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(11, 199, 0, 0.3));
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
}

.platform-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(11, 199, 0, 0.5));
    background: rgba(255, 255, 255, 0.1);
}

.platform-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
}

.sync-description {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sync-league-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    width: 400px;
    height: 600px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.sync-demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(11, 199, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(11, 199, 0, 1);
    transform: scale(1.1);
}

/* Dual Currency Section */
.dual-currency-section {
    background: #000;
    color: white;
    padding: 5rem 0;
}

.dual-currency-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.dual-currency-text {
    max-width: 800px;
}

.dual-currency-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dual-currency-text > p {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.currency-info {
    margin-bottom: 3rem;
}

.currency-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.currency-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.currency-icon.green-glow {
    background: rgba(11, 199, 0, 0.2);
    border: 2px solid #0bc700;
    box-shadow: 0 0 20px rgba(11, 199, 0, 0.3);
}

.currency-icon.gold-glow {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.currency-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.currency-details p {
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.dual-currency-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-container {
    position: relative;
    width: 400px;
    height: 600px;
    perspective: 1000px;
}

/* Background 3D Text */
.background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(45deg) rotateZ(-15deg);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    z-index: 0;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.floating-item {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

.floating-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Left side floating items */
.left-1 { top: 20%; left: -50px; animation-delay: 0s; }
.left-2 { top: 40%; left: -30px; animation-delay: 1s; }
.left-3 { top: 60%; left: -60px; animation-delay: 2s; }
.left-4 { top: 80%; left: -20px; animation-delay: 3s; }
.left-5 { top: 30%; left: -40px; animation-delay: 4s; }

/* Right side floating items */
.right-1 { top: 15%; right: -50px; animation-delay: 0.5s; }
.right-2 { top: 35%; right: -25px; animation-delay: 1.5s; }
.right-3 { top: 55%; right: -60px; animation-delay: 2.5s; }
.right-4 { top: 75%; right: -30px; animation-delay: 3.5s; }

/* Hide coin floats by default, show cash floats */
.coin-float {
    display: none;
}

.cash-float {
    display: block;
}

/* When gold currency is active, show coin floats */
.floating-elements.gold-active .cash-float {
    display: none;
}

.floating-elements.gold-active .coin-float {
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

/* Main Demo Screen */
.demo-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.demo-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Toggle Switch */
.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.toggle-switch {
    position: relative;
    width: 200px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.toggle-switch.active {
    background: linear-gradient(90deg, #0bc700 0%, rgba(11, 199, 0, 0.3) 100%);
    border-color: #0bc700;
    box-shadow: 0 0 30px rgba(11, 199, 0, 0.4);
}

.toggle-switch[data-currency="gold"].active {
    background: linear-gradient(90deg, #ffd700 0%, rgba(255, 215, 0, 0.3) 100%);
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.icon-circle {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slider-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
    transform: translate(3px, -3px);
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 42px;
    height: 42px;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-switch[data-currency="gold"] .toggle-slider {
    left: calc(100% - 46px);
}

.toggle-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    z-index: 1;
}

/* Currency Display */
.currency-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.currency-info {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.currency-info.active {
    display: block;
}

.currency-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.3;
}

.currency-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.currency-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.currency-name {
    font-size: 1.1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

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

/* Dynamic Backlight */
.screen-backlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 1;
}

.screen-backlight.green-backlight {
    background: radial-gradient(circle at center, rgba(11, 199, 0, 0.2) 0%, transparent 60%);
    box-shadow: inset 0 0 80px rgba(11, 199, 0, 0.15);
}

.screen-backlight.gold-backlight {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 60%);
    box-shadow: inset 0 0 80px rgba(255, 215, 0, 0.15);
}

/* Mobile Dual Currency Styles */
@media (max-width: 768px) {
    .dual-currency-content {
        gap: 2rem;
    }
    
    .dual-currency-text h2 {
        font-size: 2rem;
    }
    
    .demo-container {
        width: 300px;
        height: 450px;
    }
    
    .background-text {
        font-size: 5rem;
        transform: translate(-50%, -50%) rotateX(30deg) rotateZ(-10deg);
    }
    
    .floating-coins, .floating-cash {
        display: none;
    }
    
    .toggle-switch {
        width: 160px;
        height: 45px;
    }
    
    .toggle-slider {
        width: 37px;
        height: 37px;
        top: 3px;
    }
    
    .toggle-switch[data-currency="gold"] .toggle-slider {
        left: calc(100% - 40px);
    }
    
    .currency-info h3 {
        font-size: 1.25rem;
    }
    
    .currency-info p {
        font-size: 0.9rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* Mobile Parlay & LeagueSync Styles */
@media (max-width: 768px) {
    .parlay-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .phone-showcase {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        height: auto;
        position: relative;
    }
    
    /* Reset fan layout for mobile - stack vertically */
    .parlay-phone:nth-child(1),
    .parlay-phone:nth-child(2),
    .parlay-phone:nth-child(3) {
        position: relative;
        left: auto;
        right: auto;
        transform: translateY(0px);
    }
    
    .parlay-phone:nth-child(1):hover,
    .parlay-phone:nth-child(2):hover,
    .parlay-phone:nth-child(3):hover {
        transform: scale(1.05);
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .leaguesync-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .leaguesync-text h2 {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .sync-league-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .sync-league-text h2 {
        font-size: 2rem;
    }
    
    .platform-icons {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .video-container {
        width: 300px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .parlay-title {
        font-size: 2rem;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }
    
    .sync-league-text h2 {
        font-size: 1.75rem;
    }
    
    .platform-icons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-container {
        width: 250px;
        height: 375px;
    }
}

/* Opaque Verse Logo Background Pattern */
.verse-logo-bg {
    position: relative;
    overflow: hidden;
}

.verse-logo-bg::before {
    content: '';
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%) translate(90px, 0px);
    width: 300px;
    height: 300px;
    background-image: url('./Photos/Icons/Icon_Black@3x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(100%) brightness(0.3);
    pointer-events: none;
    z-index: 1;
}

.verse-logo-bg > * {
    position: relative;
    z-index: 2;
}

/* Alternative pattern with more subtle effect */
.verse-logo-bg-subtle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('Photos/Icons/Icon_Black@3x.png');
    background-size: 250px 250px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    filter: grayscale(100%) brightness(0.5) contrast(0.8);
    pointer-events: none;
    z-index: 1;
}

/* Pattern with offset positioning for more organic feel */
.verse-logo-bg-organic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('Photos/Icons/Icon_Black@3x.png');
    background-size: 280px 280px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    filter: grayscale(100%) brightness(0.45);
    pointer-events: none;
    z-index: 1;
}

/* Test version with higher opacity to debug */
.verse-logo-bg-test::before {
    content: '';
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%) translate(90px, 0px);
    width: 200px;
    height: 200px;
    background-image: url('./Photos/Icons/Icon_Black@3x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    filter: grayscale(100%) brightness(0.5);
    pointer-events: none;
    z-index: 1;
    border: 1px solid red; /* Debug border to see the element */
}

/* Help Center Page Styles */
.help-center {
    padding: 120px 0 80px;
    background: #000000;
}

.help-content {
    margin-top: 3rem;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.help-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.help-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(11, 199, 0, 0.3);
    transform: translateY(-2px);
}

.help-category h3 {
    color: #0bc700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.help-category ul {
    list-style: none;
}

.help-category li {
    margin-bottom: 0.75rem;
}

.help-category a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-category a:hover {
    color: #0bc700;
}

.contact-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h3 {
    color: #0bc700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-section p {
    margin-bottom: 2rem;
    color: #ccc;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method h4 {
    color: #0bc700;
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

/* Founder Articles Page Styles */
.founder-articles {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0 4rem;
}

.article-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(11, 199, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(11, 199, 0, 0.1);
}

.article-image {
    height: 200px;
    background: linear-gradient(135deg, #0bc700 0%, #e9ed05 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.article-image img {
    max-width: 80px;
    max-height: 80px;
    filter: brightness(0) invert(1);
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.article-meta {
    color: #0bc700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-excerpt {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #0bc700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e9ed05;
}

.newsletter-signup {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-signup h3 {
    color: #0bc700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.newsletter-signup p {
    margin-bottom: 2rem;
    color: #ccc;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0bc700 0%, #e9ed05 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 199, 0, 0.3);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .help-categories {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .help-center,
    .founder-articles {
        padding: 100px 0 60px;
    }
    
    .contact-section,
    .newsletter-signup {
        padding: 2rem;
    }
}

/* Technical Issue Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(11, 199, 0, 0.3);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-header h3 {
    color: #0bc700;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #0bc700;
}

.popup-body {
    padding: 1.5rem;
}

.popup-body > p {
    color: #ccc;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0bc700;
    box-shadow: 0 0 0 3px rgba(11, 199, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #0bc700 0%, #e9ed05 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 199, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.discord-invite {
    background: rgba(11, 199, 0, 0.1);
    border: 1px solid rgba(11, 199, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.discord-invite p {
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.discord-invite a {
    color: #0bc700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.discord-invite a:hover {
    color: #e9ed05;
    text-decoration: underline;
}

/* Discord link styling in contact methods */
.discord-link {
    color: #0bc700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.discord-link:hover {
    color: #e9ed05;
    background: rgba(11, 199, 0, 0.1);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Media Inquiries Popup Specific Styles */
.media-inquiries-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.media-inquiries-link:hover {
    color: #0bc700;
}

.media-contact-info {
    background: rgba(11, 199, 0, 0.1);
    border: 1px solid rgba(11, 199, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.media-contact-info p {
    color: #fff;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.media-contact-info strong {
    color: #0bc700;
}

/* Form select styling */
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #0bc700;
    box-shadow: 0 0 0 3px rgba(11, 199, 0, 0.1);
}

.form-group select option {
    background: #2a2a2a;
    color: #fff;
    padding: 0.5rem;
}

/* Date input styling */
.form-group input[type="date"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="date"]:focus {
    outline: none;
    border-color: #0bc700;
    box-shadow: 0 0 0 3px rgba(11, 199, 0, 0.1);
}

/* Responsive popup styles */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header,
    .popup-body {
        padding: 1rem;
    }
    
    .popup-header h3 {
        font-size: 1.1rem;
    }
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 6rem 0 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(11,199,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.article-header .container {
    position: relative;
    z-index: 2;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.back-link {
    color: #0bc700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link:hover {
    color: #e9ed05;
}

.article-date,
.article-read-time {
    color: #999;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #0bc700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 0;
}

.article-content {
    padding: 4rem 0;
    background: #fff;
    color: #333;
}

.article-content .container {
    max-width: 800px;
}

.content-wrapper {
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    color: #444;
}

.content-wrapper p:last-child {
    margin-bottom: 0;
}

.content-wrapper strong {
    color: #0a0a0a;
    font-weight: 700;
}

.content-wrapper a {
    color: #0bc700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-wrapper a:hover {
    color: #e9ed05;
    border-bottom-color: #e9ed05;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.75rem;
    color: #444;
}

.content-wrapper blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #0bc700;
    border-radius: 8px;
    font-style: italic;
    color: #555;
    position: relative;
}

.content-wrapper blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #0bc700;
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-family: serif;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #0bc700;
    display: inline-block;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a0a0a;
    margin: 2rem 0 1rem;
}

.article-cta {
    margin: 2rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0bc700 0%, #e9ed05 100%);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 199, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 199, 0, 0.3);
    color: #000;
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .article-header {
        padding: 5rem 0 2rem;
        margin-top: 60px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .article-content {
        padding: 2rem 0;
    }
    
    .content-wrapper {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .subsection-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 4rem 0 2rem;
        margin-top: 50px;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .content-wrapper {
        font-size: 0.95rem;
    }
    
    .content-wrapper blockquote {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Legal Content Styles */
.legal-content {
    padding: 120px 0 8rem;
    background: #000;
    min-height: 100vh;
    position: relative;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 2px solid rgba(11, 199, 0, 0.3);
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0bc700 0%, #e9ed05 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-meta {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-meta strong {
    color: #0bc700;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.legal-body h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0bc700;
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(11, 199, 0, 0.2);
}

.legal-body h2:first-of-type {
    border-top: none;
    margin-top: 0;
}

.legal-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.legal-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-body li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
}

.legal-body strong {
    color: #0bc700;
}

.legal-body h2:last-of-type {
    margin-bottom: 3rem;
}

.legal-body p:last-of-type {
    margin-bottom: 4rem;
}

.legal-body ul:last-of-type {
    margin-bottom: 4rem;
}

/* Responsive Design for Legal Content */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 2rem;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-body h2 {
        font-size: 1.5rem;
    }
    
    .legal-body p,
    .legal-body li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-body h2 {
        font-size: 1.3rem;
    }
    
    .legal-body p,
    .legal-body li {
        font-size: 0.95rem;
    }
    
    .legal-body ul {
        padding-left: 1.5rem;
    }
}

/* Footer positioning for legal pages */
.legal-content + .footer {
    margin-top: 2rem;
    background: #000;
}

.legal-content + .footer .footer-content {
    border-radius: 20px 20px 0 0;
    margin: 0 2rem;
    padding-top: 3rem;
    background: rgba(0, 0, 0, 0.9);
}

/* Ensure proper page height for legal pages */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-content {
    flex: 1;
}