:root {
    --primary-red: #E3042E;
    --primary-navy: #05091D;
    --primary-blue: #004B8D;
    --text-white: #ECF0F1;
    --text-off-white: #BDC3C7;
    --accent-gold: #F1C40F;
    --dark-overlay: rgba(5, 9, 29, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: var(--primary-navy);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-red {
    background-color: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
}

.btn-red:hover {
    background-color: transparent;
    color: var(--primary-red);
}

.btn-red-lg {
    background-color: var(--primary-red);
    color: white;
    font-size: 1.2rem;
    padding: 15px 40px;
    border: 2px solid var(--primary-red);
}

.btn-red-lg:hover {
    background-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(227, 4, 46, 0.5);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    margin-left: 20px;
    padding: 15px 40px;
    font-size: 1.2rem;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-navy);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(5, 9, 29, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.navbar.menu-open {
    background-color: rgba(5, 9, 29, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }

    .logo span {
        font-size: 1.1rem;
    }
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a:not(.btn) {
    font-size: 1.1rem;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

@media (max-width: 968px) {
    .hero {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 105%;

    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    opacity: 70%;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-left {
    flex: 1;
    padding-right: 50px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 968px) {
    .hero-right {
        order: 1;
        margin-bottom: 30px;
    }
}

.hero h1 {
    font-size: 7rem;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: white;
    text-shadow: 4px 4px 0px var(--primary-red);
    position: relative;
    display: inline-block;
}

.glitch-base {
    opacity: 0;
    pointer-events: none;
}

.glitch-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
}

.hero .subheadline {
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary-red);
    font-weight: 300;
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-off-white);
    max-width: 600px;
    font-family: sans-serif;
}

.hero-logo-large {
    border-radius: 6px;
    width: 80%;
    max-width: 500px;
    filter: drop-shadow(0 0 60px rgba(227, 4, 46, 0.2));
}

.hero .subheadline {
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 5px;
    color: transparent;
}

@media (max-width: 480px) {
    .hero .subheadline {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
}

.hero-sc-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) !important;
    width: auto;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.sc-tile {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: white;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.sc-tile:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    border-left-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(227, 4, 46, 0.4);
}

.sc-tile.copying {
    cursor: default;
}

.sc-tile.copied-success {
    border-left-color: #2ecc71 !important;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* About */
.about {
    padding: 100px 0;
    background-color: var(--primary-red);
    background-image: linear-gradient(45deg, #E3042E 25%, #c00326 25%, #c00326 50%, #E3042E 50%, #E3042E 75%, #c00326 75%, #c00326 100%);
    background-size: 40px 40px;
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.about-left {
    flex: 4;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
    padding-left: 20px;
}

.about-img-large {
    display: none;
    /* Deprecated */
}

.about-images-frame {
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 15px 15px 0 rgba(5, 9, 29, 0.5);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    transition: transform 0.5s;
    transform: perspective(1000px) rotateY(-10deg);
}

.about-images-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-img-item {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.about-right {
    flex: 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center text vertically */
    height: 100%;
    padding-left: 20px;
}

.about-text-content {
    width: 100%;
}

.about-text-content p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-family: sans-serif;
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* Ensure responsiveness */
@media (max-width: 968px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-left,
    .about-right {
        width: 100%;
        flex: auto;
        padding-top: 0;
    }

    .about-left {
        margin-bottom: 40px;
        margin-top: -60px;
    }
}

/* Quote/Trump Section */
.quote-section {
    padding: 80px 0;
    background-color: var(--primary-navy);
    text-align: center;
    border-top: 5px solid white;
    border-bottom: 5px solid white;
}

.quote-section blockquote {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: white;
    max-width: 900px;
    margin: 0 auto 20px;
}

.quote-section cite {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: bold;
    text-transform: uppercase;
}

/* Exchanges */
.exchanges {
    padding: 100px 0;
    background-color: #030614;
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.exchange-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.exchange-card:hover {
    background: rgba(227, 4, 46, 0.2);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

/* How to Buy */
.how-to-buy {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--primary-navy), #000);
}

.how-to-buy-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.steps-column {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
}

.how-to-buy-image {
    flex: 0 0 calc(40% - 40px);
    display: flex;
    align-items: stretch;
}

.side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(75, 4, 227, 0.3);
    border: 2px solid rgba(153, 4, 227, 0.3);
    transition: all 0.4s ease;
    mix-blend-mode: screen;
    cursor: pointer;
    filter: drop-shadow(0 0 15px rgba(134, 4, 227, 0.4));
}

.side-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(134, 4, 227, 0.4);
    border-color: rgba(134, 4, 227, 0.4);
    filter: drop-shadow(0 0 25px rgba(0, 75, 141, 0.6));
}

.unified-step-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.unified-step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px rgba(227, 4, 46, 0.3);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-item .step-number {
    font-size: 2rem;
    color: rgba(227, 4, 46, 0.6);
    font-weight: 700;
    min-width: 50px;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-item:hover .step-number {
    color: var(--primary-red);
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.step-item:hover .step-content h4 {
    color: white;
    text-shadow: 0 0 10px rgba(227, 4, 46, 0.8);
}

.step-content p {
    font-family: sans-serif;
    color: var(--text-off-white);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    transition: all 0.3s ease;
}

.step-item:hover .step-content p {
    color: white;
}

.step-content .contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    background: rgba(227, 4, 46, 0.1);
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(227, 4, 46, 0.3);
    word-break: break-all;
    word-spacing: 2px !important;
    color: var(--accent-gold) !important;
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.step-item:hover .step-content .contract-address {
    background: rgba(227, 4, 46, 0.2);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(227, 4, 46, 0.4);
}

.contract-address.copied-success {
    border-color: #2ecc71 !important;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4) !important;
    background: rgba(46, 204, 113, 0.1) !important;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px rgba(227, 4, 46, 0.3);
}

.step-card:hover .step-number {
    color: rgba(227, 4, 46, 0.3);
}

.step-card .step-number {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 0.4s ease;
}

.step-card h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.step-card:hover h4 {
    color: white;
    text-shadow: 0 0 10px rgba(227, 4, 46, 0.8);
}

.step-card p {
    font-family: sans-serif;
    color: var(--text-off-white);
    transition: all 0.3s ease;
}

.step-card:hover p {
    color: white;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    background: rgba(227, 4, 46, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(227, 4, 46, 0.3);
    word-break: break-all;
    color: var(--accent-gold) !important;
    font-weight: 600;
    user-select: none;
}

.step-card:hover .contract-address {
    background: rgba(227, 4, 46, 0.2);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(227, 4, 46, 0.4);
}

/* Responsiveness for How To Buy */
@media (max-width: 968px) {
    .how-to-buy-content {
        flex-direction: column;
    }

    .steps-column,
    .how-to-buy-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .how-to-buy-image {
        margin-top: 30px;
        min-height: 300px;
    }

    .unified-step-card {
        padding: 20px;
    }

    .step-item {
        gap: 15px;
    }

    .step-item .step-number {
        font-size: 1.5rem;
        min-width: 40px;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content .contract-address {
        font-size: 0.75rem;
        padding: 8px;
    }
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background-color: black;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-banner {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-banner img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-banner img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(227, 4, 46, 0.3);
}

.footer-socials {
    margin-bottom: 40px;
}

.social-icon {
    display: inline-block;
    margin: 0 15px;
    font-size: 1.2rem;
    color: var(--text-off-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
}

.social-icon:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-family: sans-serif;
    margin-bottom: 20px;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 800px;
    margin: 0 auto;
    font-family: sans-serif;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.tilt-effect {
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s;
}

.tilt-effect:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero-content,
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 30px;
        order: 2;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    .hero-sc-container {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none !important;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        order: 3;
    }

    .sc-tile {
        margin-bottom: 10px;
        font-size: 0.7rem;
        padding: 10px 15px;
        width: auto;
        max-width: 90vw;
        word-break: break-all;
        line-height: 1.2;
        text-align: center;
        border-left-width: 3px;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        /* Match the padding reduction in mobile */
        left: 0;
        width: 100%;
        background-color: rgba(5, 9, 29, 0.98);
        flex-direction: column;
        padding: 0;
        border-bottom: 2px solid var(--primary-red);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
    }

    .nav-links.active {
        max-height: 80vh;
        opacity: 1;
        padding: 20px 0;
        visibility: visible;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 4rem;
    }

    .subheadline {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2rem;
    }
}

.marquee-container {
    background-color: var(--primary-red);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 5px solid var(--primary-blue);
    border-bottom: 5px solid var(--primary-blue);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 80px;
    background-image: url('../images/patern_lions_white.jpeg');
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    /* border-top: 4px solid var(--primary-red); */
    /* border-bottom: 4px solid var(--primary-red); */
    margin: 0;
}

/* Video Section */
.video-section {
    width: 100%;
    background-color: var(--primary-navy);
}

.video-container {
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
}

.video-wrapper {
    flex: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-divider {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--primary-red) 10%,
            var(--primary-red) 90%,
            transparent 100%);
    box-shadow: 0 0 10px rgba(227, 4, 46, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
    .video-container {
        flex-direction: column;
        height: auto;
    }

    .video-wrapper {
        height: 50vh;
    }

    .video-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right,
                transparent 0%,
                var(--primary-red) 10%,
                var(--primary-red) 90%,
                transparent 100%);
    }

    .how-to-buy-content {
        flex-direction: column;
    }

    .steps-column {
        flex: 1;
        width: 100%;
    }

    .how-to-buy-image {
        flex: 1;
        width: 100%;
        position: relative;
        top: 0;
    }
}