* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700;
    --secondary-color: #FFA500;
    --dark-bg: rgba(20, 10, 0, 0.9);
    --light-text: #ffffff;
    --accent-color: #FFAA00;
    --gold-light: #FFE55C;
    --gold-dark: #CC8800;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #000000, #1a0a00);
}

.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.video-background video {
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(40, 20, 0, 0.8));
    z-index: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(20, 10, 0, 0.95), rgba(0, 0, 0, 0.95));
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.5);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 30px rgba(255, 215, 0, 0.7);
}

header.scrolled .logo {
    font-size: 22px;
}

header.scrolled .social-media a {
    font-size: 20px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: shine 3s linear infinite;
    background-size: 200% 100%;
    transition: font-size 0.3s ease;
}

.social-media {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-media a {
    color: var(--light-text);
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    color: #FFD700;
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.pump-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pump-logo {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.pump-link:hover .pump-logo {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.pump-icon {
    font-size: 24px !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.pump-icon:hover {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    transform: scale(1.2) translateY(-3px) !important;
}

/* Home Section */
.home-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.15), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.home-content {
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.top-badge {
    font-size: 14px;
    letter-spacing: 6px;
    color: rgba(255, 215, 0, 0.8);
    margin-bottom: 30px;
    font-weight: 400;
    animation: fadeIn 1.5s ease;
}

.hero-title {
    font-size: 96px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both, shine 4s linear infinite;
    background-size: 200% 100%;
    letter-spacing: 4px;
}

.hero-story {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.4s both;
}

.story-text {
    font-size: 24px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-weight: 300;
}

.story-text.highlight {
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 20px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-btn {
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.hero-btn.secondary {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
}

.hero-btn.outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateX(5px);
}

.hero-btn i {
    font-size: 14px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7),
                    0 0 60px rgba(255, 215, 0, 0.5),
                    inset 0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 50px rgba(255, 215, 0, 0.9),
                    0 0 80px rgba(255, 215, 0, 0.7),
                    inset 0 0 30px rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
}

@keyframes shine-badge {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    }
    100% {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes expand {
    0%, 100% {
        width: 60px;
    }
    50% {
        width: 100px;
    }
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ca-container {
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ca-container label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--accent-color);
}

.ca-box {
    display: flex;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                inset 0 0 10px rgba(255, 215, 0, 0.1);
}

#contractAddress {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--light-text);
    font-size: 16px;
    outline: none;
}

.copy-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.copy-btn:hover {
    background: linear-gradient(135deg, #FFE55C, #FFD700);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.copy-feedback {
    display: none;
    color: #00ff00;
    margin-top: 10px;
    font-weight: bold;
}

.copy-feedback.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    background-size: 200% 100%;
    animation: shine 3s linear infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, #FFE55C, #FFD700, #FFE55C);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(30, 15, 0, 0.85));
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.05), transparent 60%);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #FFD700;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.story-main {
    font-size: 22px;
    color: #FFE55C;
    margin-bottom: 15px;
    font-style: italic;
}

.story-highlight {
    font-size: 26px;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 20px;
}

.about-details {
    margin-bottom: 30px;
}

.about-details h3 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 15px;
}

.about-details p {
    font-size: 18px;
    line-height: 1.8;
}

.about-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.about-cta i {
    margin-right: 10px;
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    max-width: 100%;
}

.about-story {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-details {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid #FFD700;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.detail-item i {
    font-size: 24px;
    color: #FFD700;
    margin-top: 5px;
}

.detail-item h4 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 5px;
}

.detail-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.cta-button i {
    margin-right: 10px;
}

.about-chart {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.about-chart iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    border: none;
}

.features {
    list-style: none;
}

.features li {
    margin-bottom: 15px;
    font-size: 18px;
}

.features i {
    color: #FFD700;
    margin-right: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.dexscreen-container {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.dexscreen-container h3 {
    margin-bottom: 15px;
    color: #FFD700;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.dexscreen-embed {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.dexscreen-embed iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.chart-note {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Meme Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 10, 0, 0.9));
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.gallery-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
    background-size: 200% 100%;
}

.gallery-subtitle {
    text-align: center;
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 60px;
    opacity: 0.9;
}

.gallery-3d-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.gallery-3d-container {
    width: 100%;
    max-width: 800px;
    height: 500px;
    perspective: 2000px;
    position: relative;
}

.gallery-3d-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item {
    position: absolute;
    width: 400px;
    height: 450px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    pointer-events: none;
}

.gallery-item.active {
    opacity: 1;
    z-index: 10;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    pointer-events: auto;
}

.gallery-item.prev {
    opacity: 0.5;
    transform: translate(-150%, -50%) scale(0.8) rotateY(45deg);
    z-index: 5;
}

.gallery-item.next {
    opacity: 0.5;
    transform: translate(50%, -50%) scale(0.8) rotateY(-45deg);
    z-index: 5;
}

.gallery-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    border: 3px solid #FFD700;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4),
                0 0 40px rgba(255, 215, 0, 0.2),
                inset 0 0 20px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item.active .gallery-card {
    animation: float 3s ease-in-out infinite;
}

.gallery-card:hover {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.6),
                0 0 60px rgba(255, 215, 0, 0.4);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: #FFA500;
    font-size: 16px;
}

.gallery-nav {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 100;
    position: relative;
}

.gallery-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.gallery-nav:active {
    transform: scale(0.95);
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    transform: scale(1.3);
    background: rgba(255, 215, 0, 0.6);
}

.indicator.active {
    background: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    transform: scale(1.4);
}

.gallery-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-btn {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.gallery-btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.gallery-btn i {
    margin-right: 8px;
}

/* Animations */
@keyframes shine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateZ(0) rotateZ(0deg);
    }
    50% {
        transform: translateZ(10px) rotateZ(1deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 20px;
}

.indicator {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 3px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.indicator img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.indicator:hover {
    transform: scale(1.1);
    border-color: rgba(255, 215, 0, 0.6);
}

.indicator:hover img {
    opacity: 0.9;
}

.indicator.active {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transform: scale(1.15);
}

.indicator.active img {
    opacity: 1;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.control-btn {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.control-btn i {
    font-size: 14px;
}

/* Responsive Gallery */
@media (max-width: 968px) {
    .gallery-3d-wrapper {
        flex-direction: column;
    }
    
    .gallery-3d-container {
        height: 450px;
    }
    
    .gallery-item {
        width: 350px;
        height: 400px;
    }
    
    .gallery-nav {
        position: absolute;
        bottom: -80px;
    }
    
    .gallery-nav.prev {
        left: 30%;
    }
    
    .gallery-nav.next {
        right: 30%;
    }
    
    .indicator {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 32px;
    }
    
    .gallery-3d-container {
        height: 400px;
    }
    
    .gallery-item {
        width: 280px;
        height: 350px;
    }
    
    .gallery-item.prev,
    .gallery-item.next {
        display: none;
    }
    
    .gallery-overlay {
        display: none !important;
    }
    
    .gallery-card {
        background: transparent;
        box-shadow: none;
    }
    
    .indicator {
        width: 40px;
        height: 40px;
    }
    
    .gallery-indicators {
        gap: 10px;
    }
}

/* Community Section */
.community-section {
    padding: 100px 0;
    text-align: center;
}

.community-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
    background-size: 200% 100%;
}

.community-section > p {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.community-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.community-card:hover {
    border-color: #FFD700;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5),
                0 0 40px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
}

.community-card i {
    font-size: 60px;
    color: #FFD700;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.pump-icon-large {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.pump-logo-large {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.community-card:hover .pump-logo-large {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.community-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.community-card p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.community-link {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.community-link:hover {
    background: linear-gradient(135deg, #FFE55C, #FFD700);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 10, 0, 0.95));
    padding: 50px 0 20px;
    border-top: 3px solid #FFD700;
    box-shadow: 0 -5px 30px rgba(255, 215, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-section h3 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-top: 10px;
    font-size: 16px;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--light-text);
    font-size: 24px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #FFD700;
    transform: translateY(-3px);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header */
    header .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        padding: 0 20px;
    }

    header {
        padding: 15px 0;
    }

    .logo {
        font-size: 22px;
    }

    header.scrolled .logo {
        font-size: 20px;
    }

    .social-media {
        gap: 15px;
    }

    .social-media a {
        font-size: 20px;
    }

    .pump-logo {
        width: 20px;
        height: 20px;
    }

    header.scrolled .social-media a {
        font-size: 18px;
    }

    header.scrolled .pump-logo {
        width: 18px;
        height: 18px;
    }

    /* Home Section */
    .home-section {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 64px;
        letter-spacing: 3px;
    }

    .top-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .story-text {
        font-size: 18px;
    }

    .story-text.highlight {
        font-size: 22px;
    }

    .hero-story {
        margin: 30px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .hero-btn {
        justify-content: center;
        width: 100%;
        padding: 18px 35px;
        font-size: 16px;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about-story {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .about-details {
        gap: 15px;
        margin: 30px 0;
    }

    .detail-item {
        padding: 18px;
    }

    .detail-item i {
        font-size: 22px;
    }

    .detail-item h4 {
        font-size: 18px;
    }

    .detail-item p {
        font-size: 14px;
    }

    .about-chart {
        padding: 15px;
        order: 2;
    }

    .about-chart iframe {
        height: 450px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 18px 35px;
        font-size: 16px;
    }

    /* Gallery Section */
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-title {
        font-size: 36px;
    }

    .gallery-subtitle {
        font-size: 16px;
    }

    .gallery-3d-container {
        height: 450px;
    }

    .gallery-item {
        width: 320px;
        height: 380px;
    }

    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .gallery-indicators {
        margin-top: 30px;
    }

    .indicator {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .control-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Community Section */
    .community-section {
        padding: 60px 0;
    }

    .community-section h2 {
        font-size: 36px;
    }

    .community-section > p {
        font-size: 18px;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .community-card {
        padding: 35px 25px;
    }

    /* Footer */
    footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-section ul {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    header .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 18px;
    }

    header.scrolled .logo {
        font-size: 16px;
    }

    .social-media {
        gap: 12px;
    }

    .social-media a {
        font-size: 18px;
    }

    .pump-logo {
        width: 18px;
        height: 18px;
    }

    header.scrolled .social-media a {
        font-size: 16px;
    }

    header.scrolled .pump-logo {
        width: 16px;
        height: 16px;
    }

    /* Home Section */
    .home-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 2px;
        line-height: 1.1;
    }

    .top-badge {
        font-size: 11px;
        padding: 6px 15px;
        letter-spacing: 4px;
    }

    .story-text {
        font-size: 16px;
    }

    .story-text.highlight {
        font-size: 18px;
    }

    .hero-story {
        margin: 25px 0;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-btn {
        padding: 16px 30px;
        font-size: 15px;
    }

    /* About Section */
    .about-section {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-story {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .about-details {
        gap: 12px;
        margin: 25px 0;
    }

    .detail-item {
        padding: 15px;
        flex-direction: row;
    }

    .detail-item i {
        font-size: 20px;
    }

    .detail-item h4 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .detail-item p {
        font-size: 13px;
    }

    .about-chart {
        padding: 12px;
    }

    .about-chart iframe {
        height: 380px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 15px;
    }

    /* Gallery Section */
    .gallery-section {
        padding: 50px 0;
    }

    .gallery-title {
        font-size: 28px;
    }

    .gallery-subtitle {
        font-size: 14px;
    }

    .gallery-3d-container {
        height: 420px;
    }

    .gallery-item {
        width: 280px;
        height: 350px;
    }

    .gallery-item.prev,
    .gallery-item.next {
        display: none;
    }

    .gallery-overlay {
        display: none !important;
    }

    .gallery-card {
        background: transparent;
        box-shadow: none;
    }

    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .gallery-indicators {
        margin-top: 25px;
        gap: 10px;
    }

    .indicator {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .control-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .control-btn i {
        font-size: 14px;
    }

    /* Community Section */
    .community-section {
        padding: 50px 0;
    }

    .community-section h2 {
        font-size: 28px;
    }

    .community-section > p {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .community-grid {
        gap: 15px;
    }

    .community-card {
        padding: 30px 20px;
    }

    .community-card i {
        font-size: 40px;
    }

    .pump-icon-large img {
        width: 40px;
        height: 40px;
    }

    .community-card h3 {
        font-size: 20px;
    }

    .community-card p {
        font-size: 14px;
    }

    .community-link {
        padding: 10px 25px;
        font-size: 14px;
    }

    /* Footer */
    footer {
        padding: 40px 0 25px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section p {
        font-size: 13px;
    }

    .footer-badge {
        font-size: 14px;
        padding: 6px 15px;
    }

    .footer-social a {
        font-size: 18px;
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}
