@font-face {
    font-family: 'Gotham Bold Reg';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
         url('../fonts/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-yellow: #FEEF00;
    --primary-black: #000000;
    --accent-blue: #007DC6;
    --white: #ffffff;
    --primary-color: #FEEF00;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--white);
}

/* Header Styles */
header {
    background-color: var(--primary-black);
    padding: 1rem 2rem;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo-text {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Gotham Bold Reg', Arial, sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
}

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

.buy-now {
    background-color: var(--primary-color);
    color: var(--primary-black) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.buy-now:hover {
    background-color: #fff566;  /* Slightly lighter version of FEEF00 */
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(254, 239, 0, 0.4);  /* Updated glow color */
}

/* Hero Section */
.hero {
    background-image: url('../images/background.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 3;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    margin-top: 1rem;
    position: relative;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0 var(--primary-black);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-buttons a {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
}

.buy-now-btn {
    background-color: var(--primary-color);
    color: var(--primary-black);
    font-weight: bold;
}

.ticker-tape {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
}

.ticker-tape p {
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: var(--white);
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-content p {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    background-color: var(--primary-color);
    color: var(--primary-black);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        position: relative;
        height: 50px;
    }

    .logo {
        justify-content: flex-start;
        padding-left: 0;
        width: auto;
        margin: 0;
        z-index: 2;
    }

    .header-social-icons {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 1;
    }

    .hamburger {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .logo {
        justify-content: flex-start !important;
    }

    .header-social-icons {
        position: absolute !important;
        transform: translateX(-50%) !important;
        left: 50% !important;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px; /* Height of header */
        left: 0;
        width: 100%;
        background-color: var(--primary-black);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        padding: 0.5rem 0;
        text-align: center;
    }

    .nav-links .buy-now {
        display: block;
        text-align: center;
        margin: 0 auto;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .menu-overlay.active {
        display: block;
    }

    .logo {
        justify-content: center;
    }

    .nav-logo {
        height: 35px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    header {
        padding: 0.5rem 1rem;
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .hero {
        padding-top: 0;
        min-height: 85vh;
    }

    .hero-content {
        margin-top: 0;
        padding: 0.8rem;
    }

    .hero-logo {
        max-width: 250px;
        margin-bottom: -1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: -8px;
    }

    .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-contract {
        margin-top: 0.8rem;
    }

    .container {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .hero-logo {
        max-width: 300px;  /* Smaller logo on mobile */
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1;
    }

    .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .contract-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .contract-input {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    .copy-btn {
        width: 100%;
        padding: 0.8rem;
    }

    .about, .luxury {
        padding: 3rem 1rem;
    }

    .about-content h2, 
    .luxury-content h2 {
        font-size: 2rem;
    }

    .luxury-quote {
        font-size: 1.2rem;
        margin: 1.5rem 0;
    }

    .social-icons {
        gap: 1.5rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .footer .social-icon {
        width: 45px;
        height: 45px;
    }
}

/* Add styles for very small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .contract-input {
        font-size: 0.9rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .buy-now {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-logo {
        height: 30px;
    }

    .hero {
        padding-top: 5px;
    }

    .hero-logo {
        max-width: 200px;
    }

    .hero-content {
        padding: 0.5rem;
    }
}

.hero-logo {
    max-width: 500px;  /* increased from 300px */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: -2rem;  /* pull the content below closer */
}

.hero-title {
    font-family: 'Gotham Bold Reg', 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 0.8;
    margin-bottom: -10px;
}

.hero-tagline {
    font-style: italic;
    color: var(--white);
    font-size: 2rem;
    margin: 0 0 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-contract {
    margin-top: 1rem;  /* reduced from 2rem */
    background: rgba(0, 0, 0, 0.8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.hero-contract .contract-input {
    color: var(--white);  /* making the text white for better visibility */
} 

.nav-logo {
    height: 40px;  /* adjust this value to match your desired header height */
    width: auto;
    display: block;
} 

.contract-box {
    display: flex;
    align-items: center;
    background: var(--primary-black);
    border-radius: 8px;
    padding: 4px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contract-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--primary-color);
    padding: 12px;
    font-family: monospace;
    font-size: 1rem;
    outline: none;
    cursor: default;
}

.copy-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    color: var(--primary-black);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.copy-btn:hover {
    background: #fff566;  /* Slightly lighter version of FEEF00 */
}

.copy-btn .copied-text {
    display: none;
}

.copy-btn.copied .default-text {
    display: none;
}

.copy-btn.copied .copied-text {
    display: inline;
} 

.luxury {
    padding: 5rem 2rem;
    background-color: var(--primary-black);
}

.reverse {
    flex-direction: row-reverse;
}

.luxury-content {
    flex: 1;
}

.luxury-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.luxury-content p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.luxury-image {
    flex: 1;
}

.luxury-image img {
    width: 100%;
    border-radius: 10px;
}

/* Update the media query to include the new section */
@media (max-width: 768px) {
    .container.reverse {
        flex-direction: column;
    }
} 

.luxury .contract-box {
    background: var(--white);
    border: 1px solid var(--primary-color);  /* Updated from primary-yellow */
}

.luxury .contract-input {
    color: var(--primary-black);  /* Change text color to black for better contrast */
}

.luxury .copy-btn {
    background: var(--primary-black);
    color: var(--primary-color);  /* Updated from primary-yellow */
}

.luxury .copy-btn:hover {
    background: #333;  /* Slightly lighter black on hover */
} 

.luxury-quote {
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.4rem;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
    line-height: 1.4;
} 

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    filter: invert(89%) sepia(72%) saturate(1095%) hue-rotate(359deg) brightness(104%) contrast(103%);  /* Updated for #FEEF00 */
}

.footer {
    background-color: var(--primary-black);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
}

.footer .social-icons {
    margin: 0;
}

.footer .social-icon {
    width: 50px;
    height: 50px;
    filter: invert(89%) sepia(72%) saturate(1095%) hue-rotate(359deg) brightness(104%) contrast(103%);  /* Updated for #FEEF00 */
} 

.header-social-icons {
    display: flex;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-social-icons .social-icon {
    width: 25px;
    height: 25px;
    filter: invert(89%) sepia(72%) saturate(1095%) hue-rotate(359deg) brightness(104%) contrast(103%);  /* Updated for #FEEF00 */
}

@media (max-width: 768px) {
    .header-social-icons {
        position: static;
        transform: none;
        justify-content: center;
        margin: 0.5rem 0;
    }
} 

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform-origin: left center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-links {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-black);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        text-align: center;
    }

    .nav-links .buy-now {
        display: inline-block;
        text-align: center;
    }

    /* Clean up header positioning */
    header {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 0.5rem 1rem;
    }

    nav {
        width: 100%;
        position: relative;
    }

    /* Ensure consistent spacing for nav items */
    .nav-links a {
        width: auto;
        padding: 0.5rem 1rem;
        text-align: center;
    }
} 

/* Update header styles */
header {
    background-color: var(--primary-black);
    padding: 1rem 2rem;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 1rem;
        position: sticky;  /* Ensure sticky on mobile */
        top: 0;
        z-index: 1000;
    }

    .nav-links {
        position: fixed;  /* Change to fixed for the dropdown */
        top: 50px;  /* Height of header */
        left: 0;
        width: 100%;
        background-color: var(--primary-black);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        z-index: 999;  /* Just below header */
    }
} 

.dollar-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.dollar {
    position: absolute;
    color: #85bb65;
    opacity: 0;
    font-size: 24px;
    animation: fall linear infinite;
    font-weight: bold;
}

@keyframes fall {
    0% {
        transform: translateY(-20vh) rotate(0deg);
        opacity: 0;
    }
    2% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(150vh) rotate(360deg);
        opacity: 0;
    }
} 

/* For mobile screens, make them even smaller */
@media (max-width: 768px) {
    .dollar {
        font-size: 20px;  /* Even smaller on mobile */
    }
} 

.about-quote {
    color: var(--primary-black);
    font-style: italic;
    font-size: 1.4rem;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
    line-height: 1.4;
} 

/* Add styles for the middle section */
.middle-section {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        color-mix(in srgb, var(--primary-color) 50%, white) 50%, 
        var(--primary-color) 100%);
    margin-bottom: 2rem;
}

/* Update text colors for middle section since background is yellow */
.middle-section .luxury-content h2,
.middle-section .luxury-content p,
.middle-section .luxury-quote {
    color: var(--primary-black);  /* Change text to black for better contrast */
}

.middle-section .luxury-quote {
    border-left: 4px solid var(--primary-black);  /* Change border to black */
}

/* Update contract box styles for middle section */
.middle-section .contract-box {
    background: var(--primary-black);
}

.middle-section .contract-input {
    color: var(--white);
}

.middle-section .copy-btn {
    background: var(--white);
    color: var(--primary-black);
}

.middle-section .copy-btn:hover {
    background: #f0f0f0;
} 

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;  /* Reduced from 2rem */
    gap: 0;
}

.read-more-text {
    margin-bottom: -2px;
    font-size: 1rem;
    color: inherit;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.read-more-text:hover {
    opacity: 0.8;
}

.scroll-down-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;  /* Remove padding */
    transition: transform 0.3s ease;
    line-height: 1;
    color: inherit;
}

/* Replace triangle with nicer arrow */
.scroll-down-btn::after {
    content: '';
    display: block;
    width: 15px;  /* Slightly smaller arrow */
    height: 15px;  /* Slightly smaller arrow */
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

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

/* For the luxury section (dark background) */
.luxury .scroll-down-btn,
.luxury .read-more-text {
    color: var(--white);
} 

/* Ensure these styles apply to all sections */
.about .scroll-down,
.luxury .scroll-down,
.middle-section .scroll-down {
    margin-top: 1rem;  /* Consistent margin for all sections */
}

.about .read-more-text,
.luxury .read-more-text,
.middle-section .read-more-text {
    margin-bottom: -2px;  /* Ensure consistent spacing in all sections */
}

/* Adjust the contract box margin to reduce space before read more */
.contract-box {
    margin-bottom: 0;  /* Remove bottom margin from contract boxes */
} 

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--primary-black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--primary-black);
    border-left: 2px solid var(--primary-black);
    transform: rotate(45deg);
    margin-top: 4px;
}

.scroll-to-top:hover {
    background-color: #fff566;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(254, 239, 0, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Add responsive styles for the scroll-to-top button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }

    .scroll-to-top::after {
        width: 10px;
        height: 10px;
    }
} 

.disclaimer {
    margin-top: 1rem;
    padding: 1rem;
    border-top: 1px solid rgba(254, 239, 0, 0.2);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer p {
    color: var(--white);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.8;
}

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

/* Update the disclaimer for mobile screens */
@media (max-width: 768px) {
    .disclaimer {
        padding: 1rem 1rem;
    }
    
    .disclaimer p {
        font-size: 0.7rem;
    }
} 

/* Scrolling Banner */
.scrolling-banner {
    width: 100%;
    background: var(--primary-black);
    overflow: hidden;
    padding: 15px 0;
    border-top: 2px solid rgba(254, 239, 0, 0.2);  /* Made top border slightly more prominent */
    border-bottom: 2px solid rgba(254, 239, 0, 0.2);
    position: relative;  /* Added position relative */
    z-index: 2;  /* Ensure it's above hero section */
}

.banner-content {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.banner-content span {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 20px;
    font-family: 'Gotham Bold Reg', 'Archivo', sans-serif;
}

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

/* Responsive styles for the banner */
@media (max-width: 768px) {
    .banner-content span {
        font-size: 1rem;
        margin: 0 15px;
    }
} 

/* Add this with your other nav-links styles */
.nav-links a[href="roadmap.php"] {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a[href="roadmap.php"]:hover {
    color: var(--primary-color);
} 

/* Add styles for paragraphs in content sections */
.about-content p {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.luxury-content p {
    color: var(--white);  /* Ensure text is white in dark sections */
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Middle section has dark text on light background */
.middle-section .luxury-content p {
    color: var(--primary-black);
}

.about-content p:last-of-type,
.luxury-content p:last-of-type {
    margin-bottom: 2rem; /* Space before the quote */
}

/* Ensure line breaks are respected */
.about-content p br,
.luxury-content p br {
    display: block;
    content: "";
    margin-top: 1rem;
} 

.hero-taglines {
    text-align: center;
    margin: 1rem 0;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Gotham Bold Reg', 'Archivo', sans-serif;
}

.hero-tagline-secondary {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px; /* Slightly smaller on mobile */
    }
    .hero-tagline {
        font-size: 1.4rem;
    }
    .hero-tagline-secondary {
        font-size: 1rem;
        padding: 0 1rem;
    }
} 

/* Modal Styles */
.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    transition: visibility 0s, opacity 0.3s ease;
    pointer-events: none;
}

.modal.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    display: flex;
}

.modal-content {
    background-color: var(--primary-black);
    margin: auto;
    padding: 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #fff566;
}

.modal h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Gotham Bold Reg', 'Archivo', sans-serif;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.tokenomics-item {
    text-align: center;
    padding: 1rem;
    background: rgba(254, 239, 0, 0.1);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.tokenomics-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tokenomics-item p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.4;
}

.tokenomics-item p small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.3rem;
}

.tokenomics-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    border-top: 1px solid rgba(254, 239, 0, 0.2);
}

.tokenomics-note p {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 1rem;
        width: 95%;
        max-height: 90vh;  /* Limit height to 90% of viewport height */
        overflow-y: auto;  /* Allow scrolling if content is too tall */
        margin: 1rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .tokenomics-item {
        padding: 0.75rem;
    }

    .tokenomics-item h3 {
        font-size: 1.1rem;
    }

    .tokenomics-item p {
        font-size: 0.9rem;
    }

    .tokenomics-item p small {
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }

    .tokenomics-note {
        margin-top: 1rem;
        padding: 0.75rem;
    }

    .tokenomics-note p {
        font-size: 0.75rem;
    }

    .modal {
        padding: 0.5rem;  /* Add small padding around modal */
    }
} 