@font-face {
    font-family: 'Pricedown';
    src: url('assets/fonts/Pricedown Bl.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --muted-red: #C66461;
    --warm-orange: #ECA17A;
    --soft-purple: #A782B0;
    --burnt-orange: #C97245;
    --muted-pink: #B87274;
}

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

body {
    font-family: 'Bebas Neue', sans-serif;
    background-color: var(--warm-orange);
    color: black;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(0, 0, 0, 0.6);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 5px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #C8982E;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #C8982E;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 0.5rem;
        border: none;
        box-shadow: none;
    }
    
    .logo img {
        height: 32px;
        width: 32px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 0.5rem 0;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

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

    .nav-links a {
        padding: 0.75rem;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(200, 152, 46, 0.1);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* Add space for navbar */
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -1;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.gta-title {
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: white;
    text-transform: uppercase;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0 auto;
    padding: 1rem 0;
    letter-spacing: 2px;
}

.tagline {
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #C8982E;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Hero Section Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.cta-button {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    min-width: 150px;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button.primary {
    background: var(--warm-orange);
    border: none;
    color: black;
    font-weight: bold;
}

.cta-button.primary:hover {
    background: #d9a843;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 152, 46, 0.3);
}

/* Responsive buttons */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 0.7rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Lore Section */
.lore {
    padding: 6rem 2rem;
    background-color: rgba(0, 0, 0, 0.9);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.logo-large {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.lore-text {
    color: white;
    font-size: 1.4rem;
    line-height: 1.8;
}

.lore-right h2 {
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
    color: #E6E15C;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Tokenomics Section */
.tokenomics {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--burnt-orange), var(--muted-red));
}

.tokenomics h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.2);
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.tokenomics-card {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid #C8982E;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #C8982E;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
}

.tokenomics-card h3 {
    color: #C8982E;
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tokenomics-card .percentage {
    font-size: 3rem;
    color: white;
    font-weight: bold;
    margin: 1rem 0;
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
}

.tokenomics-card p {
    color: #888;
    font-size: 1rem;
    line-height: 1.5;
}

.tokenomics-card .icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #C8982E;
    opacity: 0.5;
}

/* Roadmap Section */
#roadmap {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.roadmap-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.roadmap-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roadmap-video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#roadmap .section-content {
    position: relative;
    z-index: 1;
}

#roadmap h2 {
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E6E15C;
}

.mission-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.mission-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(200, 152, 46, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: #C8982E;
    box-shadow: 0 8px 40px rgba(200, 152, 46, 0.2);
}

.mission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mission-phase {
    color: #C8982E;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.mission-status {
    background: rgba(200, 152, 46, 0.2);
    color: #C8982E;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.mission-card h3 {
    color: white;
    font-size: 1.8rem;
    margin: 1rem 0;
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.mission-objectives {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-objectives li {
    color: #fff;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.mission-objectives li i {
    color: #C8982E;
    font-size: 1rem;
}

.mission-objectives li i.fa-check {
    color: #4CAF50;
}

.mission-objectives li i.fa-lock {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .mission-list {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .mission-card {
        padding: 1.2rem;
    }
}

/* News Section */
.news {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--burnt-orange), var(--muted-red));
}

.news h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.2);
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
}

.news-swiper {
    padding: 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.swiper-slide {
    height: auto;
    padding: 1rem;
}

.news-item {
    background: rgba(20, 20, 20, 0.98);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.news-item:hover {
    transform: translateY(-5px);
    background: rgba(25, 25, 25, 0.98);
}

.news-date {
    color: #C8982E;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.news-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
}

.news-item p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #C8982E;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: white;
}

.swiper-button-next,
.swiper-button-prev {
    color: #C8982E;
}

.swiper-pagination-bullet {
    background: #C8982E;
}

.swiper-pagination-bullet-active {
    background: #C8982E;
}

/* Socials Section */
.socials {
    padding: 6rem 0;
    background: #17100D;
    color: white;
}

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

.socials h2 {
    text-align: center;
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #C8982E;
}

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

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #C8982E;
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #C8982E;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
}

.social-card p {
    color: #888;
    font-size: 0.9rem;
}

/* NFT Collection Section */
.nft-collection {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--warm-orange), var(--burnt-orange));
}

.nft-collection h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.2);
    font-family: 'Pricedown', 'Bebas Neue', sans-serif;
}

.nft-collection .subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.nft-collection .nft-description {
    font-size: 1.2rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    padding: 0 1rem;
    opacity: 0.95;
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nft-item {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nft-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    display: block;
}

.nft-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.nft-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .nft-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .nft-collection {
        padding: 4rem 1rem;
    }

    .nft-collection h2 {
        font-size: 2.5rem;
    }

    .nft-collection .subtitle {
        font-size: 1.2rem;
    }

    .nft-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 400px;
    }

    .nft-item,
    .nft-item img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .nft-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 180px;
    }
}

/* Footer */
.footer {
    background: #111;
    padding: 4rem 0 2rem;
    color: white;
    text-align: center;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 120px;
    border-radius: 10px;
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    color: #C8982E;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #C8982E;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

.contract-address {
    margin: 1.5rem auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
}

.contract-address .label {
    display: block;
    color: #C8982E;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.address-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.address-container input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.9rem;
    width: 300px;
    text-align: center;
    cursor: default;
}

.copy-button {
    background: #C8982E;
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    font-size: 1rem;
}

.copy-button:hover {
    background: #d9a943;
}

@media (max-width: 768px) {
    .contract-address {
        margin: 1rem;
        padding: 0.75rem;
    }

    .address-container {
        flex-direction: column;
    }

    .address-container input {
        width: 100%;
        font-size: 0.8rem;
    }
    
    .copy-button {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .section-content {
        grid-template-columns: 1fr;
    }

    .gta-title {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }
}
