/* Base Styles */
:root {
    --brown: #3B2B1F;
    --black: #000000;
    --gold: #C69C24;
    --gold-light: #E6C97E;
    --bg-color: #F5F0E6;
    --text-color: #333;
    --container-width: 1200px;
    --container-padding: 5%;
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
}

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

body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding-top: 70px;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgwLDAsMCwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0id2hpdGUiLz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+') fixed;
}

html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin: 3rem 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px var(--container-padding);
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(198, 156, 36, 0.2);
}

@media (max-width: 768px) {
    .header {
        grid-template-columns: auto 1fr auto;
        padding: 10px 15px;
    }
    
    .logo-img, .header-title {
        max-width: 100px;
    }
    
    .header-title {
        font-size: 0.8rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .socials {
        justify-self: end;
    }
}

.header-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    white-space: nowrap;
    margin: 0 20px;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    justify-self: start;
}

.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

.header .logo-img {
    max-height: 40px;
}

.socials {
    display: flex;
    gap: 10px;
    justify-self: end;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    line-height: 1;
}

.social-icon.twitter {
    font-size: 1.4rem;
    padding-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-icon {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor;
}

.social-icon.telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #f0d07a;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5% 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, #1a1a1a 0%, #0a0a0a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(600px at 20% 30%, rgba(198, 156, 36, 0.15) 0%, transparent 50%),
        radial-gradient(500px at 80% 70%, rgba(198, 156, 36, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 20px;
    }
    
    .hero-logo {
        padding: 20px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .cta-button {
        margin: 0 auto;
    }
    
    .token-info {
        text-align: left;
    }
}

.hero-logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.hero-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(198, 156, 36, 0.3));
    animation: float 6s ease-in-out infinite, pulse 4s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.hero-logo-img:hover {
    transform: scale(1.03);
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 4.5rem;
    color: var(--gold);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(198, 156, 36, 0.3);
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gold);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

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

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(198, 156, 36, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(198, 156, 36, 0.5)); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 25px 0 35px;
    max-width: 90%;
}

.subtitle {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.token-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: #000000; /* Solid black background */
    border: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-sizing: border-box;
}

.token-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 8px rgba(198, 156, 36, 0.8)) /* Gold glow */
        brightness(1.1) /* Slight brightness boost */
        contrast(1.1); /* Slight contrast boost */
}

.cta-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background: linear-gradient(135deg, #c69c24 0%, #d4af37 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(198, 156, 36, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 80%;
    max-width: 250px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #c69c24 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(198, 156, 36, 0.4);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(1px);
}

.contract-address {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(198, 156, 36, 0.2);
    margin: 10px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    gap: 10px;
    font-family: 'Roboto Mono', monospace;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .contract-address {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .contract-address span {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .dexscreener-btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

.contract-address:hover {
    background: rgba(198, 156, 36, 0.1);
    border-color: rgba(198, 156, 36, 0.4);
}

.token-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto 0;
    max-width: 600px;
    text-align: left;
}

@media (max-width: 768px) {
    .token-info {
        padding: 15px;
        margin: 15px 0 0;
    }
}

.token-info p {
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.token-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.detail {
    background: rgba(198, 156, 36, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(198, 156, 36, 0.2);
}

.detail .label {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail .value {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.copy-btn {
    background: rgba(198, 156, 36, 0.1);
    border: 1px solid rgba(198, 156, 36, 0.3);
    color: var(--gold);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(198, 156, 36, 0.2);
    transform: translateY(-1px);
}

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

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dexscreener-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #c69c24 0%, #d4af37 100%);
    color: #000;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.dexscreener-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 156, 36, 0.3);
    background: linear-gradient(135deg, #d4af37 0%, #c69c24 100%);
    color: #000;
}

.dexscreener-btn svg {
    width: 14px;
    height: 14px;
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}


/* Meme Showcase Section */
.meme-showcase {
    padding: 100px 5% 60px;
    background: radial-gradient(ellipse at top, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.meme-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(600px at 20% 30%, rgba(198, 156, 36, 0.1) 0%, transparent 50%),
        radial-gradient(500px at 80% 70%, rgba(198, 156, 36, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
    .meme-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }
}

.meme-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.meme-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.meme-item img,
.meme-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meme-upload {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.meme-upload:hover {
    border-color: var(--gold);
    background: #f5f5f5;
}

.meme-upload p {
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1rem;
}

.upload-btn {
    background: var(--black);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

.footer .logo-img {
    max-height: 60px;
    margin: 0 auto 10px;
}

.footer .tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.footer .socials {
    justify-content: center;
    margin: 30px 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Videos Section */
.videos-section {
    padding: 2rem 5%;
    background-color: var(--bg-color);
}

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

.video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.video-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* Lightbox for viewing full-size memes */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .cta-container {
        align-items: center;
    }
    
    .hero-logo-img {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-container {
        padding: 60px 20px;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .token-placeholder {
        width: 150px;
        height: 150px;
        padding: 20px;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .meme-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .token-placeholder {
        width: 120px;
        height: 120px;
        padding: 15px;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    .meme-grid {
        grid-template-columns: 1fr;
    }
}
