:root {
    --background: #000000;
    --card-bg: rgba(20, 25, 45, 0.7);
    --text: #e2e8f0;
    --accent: #9945FF;
    --gradient-1: #14F195;
    --gradient-2: #9945FF;
    --card-border: rgba(255, 255, 255, 0.1);
    --card-shadow: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: transform;
}

body {
    background: linear-gradient(135deg, var(--background), #0F1C3F);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

/* Add subtle animated gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(153, 69, 255, 0.1), transparent 40%),
                radial-gradient(circle at bottom left, rgba(20, 241, 149, 0.1), transparent 40%);
    z-index: -1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(153, 69, 255, 0.3));
}

.twitter-icon {
    color: var(--text);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(153, 69, 255, 0.3));
}

.twitter-icon:hover {
    color: var(--gradient-1);
    transform: scale(1.1);
}

main {
   
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-weight: 300;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--gradient-1);
    text-shadow: 0 0 20px rgba(20, 241, 149, 0.3);
}

h2 i {
    font-size: 1.2em;
}

/* Latest News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid rgba(20, 241, 149, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 241, 149, 0.2);
}

.news-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image-container img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.news-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: var(--gradient-1);
    font-size: 0.9rem;
}

.card-button {
    margin-top: auto;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.card-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(153, 69, 255, 0.3);
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.load-more-btn {
    background: rgba(20, 241, 149, 0.05);
    border: 1px solid rgba(20, 241, 149, 0.1);
    color: var(--text);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    background: rgba(20, 241, 149, 0.1);
    border-color: var(--gradient-1);
    transform: translateY(-2px);
}

.load-more-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .trending-slider {
        height: auto;
    }
    
    .trending-card {
        flex-direction: column;
    }
    
    .trending-image {
        flex: 0 0 400px;
        height: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        background: linear-gradient(135deg, var(--background), #0F1C3F) fixed;
        min-height: 100vh;
        overflow-x: hidden;
    }
    
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(153, 69, 255, 0.1), transparent 40%),
                    radial-gradient(circle at bottom left, rgba(20, 241, 149, 0.1), transparent 40%);
        z-index: -1;
        pointer-events: none;
    }
    
    main {
        background: linear-gradient(135deg, var(--background), #0F1C3F) fixed;
        min-height: 100vh;
    }
    
    .trending-card {
        height: auto;
    }
    
    .trending-card .news-image-container {
        position: relative;
        width: 100%;
        height: 300px;
    }
    
    .trending-card::after {
        display: none;
    }
    
    .trending-card .news-content {
        position: relative;
        width: 100%;
        padding: 2rem;
        background: var(--card-bg);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-image {
        flex: 0 0 300px;
        height: 300px;
    }
    
    h2, .section-title {
        text-align: center;
        width: 100%;
    }
    
    h2 {
        justify-content: center;
        flex-direction: column;
    }
    
    .how-it-works,
    .latest-news,
    .tokenomics-section {
        padding:0;
    }
}

.error-message {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 1rem;
    border: 1px solid var(--card-border);
    color: #ff4d4d;
}

/* Trending Section Layout */
.trending-section {
    max-width: 1200px;
    margin: 0 auto;
}

.trending-main {
    height: 300px;
    margin-bottom: 2rem;
}

.trending-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.03), rgba(153, 69, 255, 0.03));
    border-radius: 24px;
    border: 1px solid rgba(20, 241, 149, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.trending-image {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.trending-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Secondary Trending News */
.trending-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.trending-card-secondary {
    height: 200px;
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.03), rgba(153, 69, 255, 0.03));
    border-radius: 24px;
    border: 1px solid rgba(20, 241, 149, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.trending-image-secondary {
    flex: 0 0 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

.trending-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.trending-content-secondary {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trending-title-secondary {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trending-secondary {
        grid-template-columns: 1fr;
    }
    
    .trending-card {
        flex-direction: column;
        height: auto;
    }
    
    .trending-image {
        width: 100%;
    }
    
    .trending-card-secondary {
        height: auto;
    }
    
    .trending-image-secondary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .trending-card-secondary {
        flex-direction: column;
    }
    
    .trending-image-secondary {
        height: 200px;
        width: 100%;
    }
}

/* Remove all trending-related styles */
.trending-section,
.trending-main,
.trending-card,
.trending-image,
.trending-content,
.trending-badge,
.trending-title,
.trending-button,
.trending-secondary,
.trending-card-secondary,
.trending-image-secondary,
.trending-content-secondary,
.trending-title-secondary {
    display: none;
}

/* Updated Tokenomics Section */
.tokenomics-section {
    padding: 6rem 0;
}

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

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

.tokenomics-card {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(20, 241, 149, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 241, 149, 0.15);
    background: rgba(17, 17, 17, 0.5);
}

.tokenomics-card i {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #14F195, #9945FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tokenomics-card h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.tokenomics-card p {
    color: var(--text);
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.5;
}

/* Section Headers */
.about-container h2,
.tokenomics-container h2 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .about-content,
    .tokenomics-card {
        padding: 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .address-container {
        flex-direction: column;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .about-container h2,
    .tokenomics-container h2 {
        font-size: 1.8rem;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spline-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}

spline-viewer {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
}

.glass-box {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(20, 241, 149, 0.1);
    border-radius: 12px;
    padding: 2rem 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.glass-box h1 {
    font-size: 3.2rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #14F195, #9945FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-box p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.primary-btn {
    background: linear-gradient(135deg, #14F195, #9945FF);
    color: #000;
    border: none;
}

.secondary-btn {
    background: rgba(20, 241, 149, 0.05);
    border: 1px solid rgba(20, 241, 149, 0.1);
    color: var(--text);
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.primary-btn:hover {
    opacity: 0.95;
    box-shadow: 0 4px 20px rgba(20, 241, 149, 0.15);
}

.secondary-btn:hover {
    background: rgba(20, 241, 149, 0.08);
    border-color: var(--gradient-1);
}

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

@media (max-width: 900px) {
    .glass-box {
        max-width: 90%;
        padding: 2rem;
    }

    .glass-box h1 {
        font-size: 2.5rem;
    }

    .glass-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .glass-box {
        padding: 1.5rem;
    }

    .glass-box h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
}

/* Footer */
.footer {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(20, 241, 149, 0.1);
    padding: 2rem 0;
    text-align: center;
}

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

.footer p {
    color: var(--text);
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

@media (max-width: 480px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-card {
        padding: 1.5rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: no-preference) {
    .glass-box,
    .news-card,
    .tokenomics-card {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
}

/* Optional: Add subtle separator if needed */
.about-section,
.tokenomics-section {
    border-top: 1px solid rgba(20, 241, 149, 0.05);
    border-bottom: 1px solid rgba(20, 241, 149, 0.05);
}

/* Floating Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

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

.header-logo {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-svg {
        width: 20px;
        height: 20px;
    }
}

/* Add backdrop blur on scroll */
.header.scrolled {
    background: rgba(17, 17, 17, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(20, 241, 149, 0.05);
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    .header-logo {
        font-size: 1.2rem;
    }
}

/* Remove all about section related styles */
.about-section,
.about-container,
.about-content,
.about-text,
.contract-address,
.address-container {
    display: none;
}

/* Update spacing between sections */
.tokenomics-section {
    padding: 6rem 0;  /* Adjusted padding to maintain good spacing from hero section */
}

/* Updated Header Styles */
.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.social-link {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    color: var(--text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    z-index: 1001; /* Above header */
}

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

/* Update header right section for Trump logo only */
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.trump-logo {
    height: 28px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.trump-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .social-link {
        top: 1rem;
        right: 1.5rem;
    }
    
    .trump-logo {
        height: 24px;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    position: relative;
}

.how-it-works-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

.glass-box-info {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(20, 241, 149, 0.08);
    border-radius: 16px;
    padding: 3rem;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 1rem;
}

.info-item i {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #14F195, #9945FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-item h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.info-item p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    font-weight: 300;
}

@media (max-width: 768px) {
    .info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .glass-box-info {
        padding: 2rem;
    }

    .info-item {
        padding: 0;
    }

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

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

/* Center Latest News title */

.section-title {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    opacity: 0.9;
}

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

/* Update spacing between sections */
.how-it-works {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

.linebreak {
    display: none;
}

@media screen and (max-width: 768px) {
    .linebreak {
        display: block;
    }
}

/* Update copy button styles */
.copy-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto;
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(20, 241, 149, 0.08);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    max-width: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.copy-wrapper:hover {
    border-color: rgba(20, 241, 149, 0.15);
    transform: translateY(-2px);
}

.copy-text {
    font-family: 'Inter', monospace;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    opacity: 1;
    color: var(--gradient-1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .copy-wrapper {
        padding: 0.8rem 1.2rem;
        gap: 0.8rem;
    }
    
    .copy-text {
        font-size: 0.85rem;
    }
}