* {
 body {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 25%, #FFEB3B 50%, #FDD835 75%, #FFD600 100%);
    color: #000;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-logo {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    animation: float 3s ease-in-out infinite;
}

.preloader-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

.preloader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 4px solid transparent;
    border-top-color: #FFD700;
    border-right-color: #FFD700;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.preloader-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 3px solid transparent;
    border-bottom-color: #00BCD4;
    border-left-color: #00BCD4;
    border-radius: 50%;
    animation: spin 3s linear infinite reverse;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.preloader-text h2 {
    font-family: 'Titan One', cursive;
    font-size: 3rem;
    color: #FFD700;
    text-shadow: 3px 3px 0 #FF6B00, 0 0 30px rgba(255, 215, 0, 0.8);
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 3px 3px 0 #FF6B00, 0 0 30px rgba(255, 215, 0, 0.8);
    }
    50% {
        text-shadow: 3px 3px 0 #FF6B00, 0 0 50px rgba(255, 215, 0, 1);
    }
}

.loading-bar {
    width: 300px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid #FFD700;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FF6B00 50%, #FFD700 100%);
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.3s ease;
    animation: shimmer 2s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.loading-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 0 #FFD700;
}

#loading-percent {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: 700;
}

.preloader-coins {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.preloader-coins .coin {
    position: absolute;
    font-size: 2rem;
    animation: orbit 4s linear infinite;
    opacity: 0.8;
}

.preloader-coins .coin:nth-child(1) {
    top: -100px;
    left: 50%;
    animation-delay: 0s;
}

.preloader-coins .coin:nth-child(2) {
    top: 0;
    right: -50px;
    animation-delay: 1s;
}

.preloader-coins .coin:nth-child(3) {
    bottom: -100px;
    left: 50%;
    animation-delay: 2s;
}

.preloader-coins .coin:nth-child(4) {
    top: 0;
    left: -50px;
    animation-delay: 3s;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

/* Responsive Preloader */
@media (max-width: 768px) {
    .preloader-logo {
        width: 150px;
        height: 150px;
    }

    .preloader-ring {
        width: 170px;
        height: 170px;
    }

    .preloader-ring-2 {
        width: 200px;
        height: 200px;
    }

    .preloader-text h2 {
        font-size: 2.5rem;
    }

    .loading-bar {
        width: 250px;
    }

    .preloader-coins .coin {
        font-size: 1.5rem;
    }

    @keyframes orbit {
        0% {
            transform: rotate(0deg) translateX(100px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(100px) rotate(-360deg);
        }
    }
}

@media (max-width: 480px) {
    .preloader-logo {
        width: 120px;
        height: 120px;
    }

    .preloader-ring {
        width: 140px;
        height: 140px;
    }

    .preloader-ring-2 {
        width: 170px;
        height: 170px;
    }

    .preloader-text h2 {
        font-size: 2rem;
    }

    .loading-bar {
        width: 200px;
        height: 15px;
    }

    .loading-text {
        font-size: 1rem;
    }

    #loading-percent {
        font-size: 1.2rem;
    }

    .preloader-coins .coin {
        font-size: 1.2rem;
    }

    @keyframes orbit {
        0% {
            transform: rotate(0deg) translateX(80px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(80px) rotate(-360deg);
        }
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #77aa00 0%, #91ff00 25%, #FFEB3B 50%, #FDD835 75%, #FFD600 100%);
    color: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #77aa00 0%, #91ff00 30%, #FFEB3B 70%, #FFD600 100%);
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.logo-container {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.pepe-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-right {
    flex: 1;
    min-width: 300px;
}

.social-icons-top {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(0, 0, 0, 0.9);
}

.social-icon img {
    width: 32px;
    height: 32px;
}

.main-title {
    font-family: 'Titan One', cursive;
    font-size: 6rem;
    color: #000;
    text-shadow: 3px 3px 0 #FFD700, 6px 6px 0 #FF6B00, 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
    font-weight: 400;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.subtitle {
    font-family: 'Bowlby One SC', cursive;
    font-size: 2.5rem;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #FFD700, 0 0 15px rgba(255, 215, 0, 0.3);
}

.tagline {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #FFD700;
}

.contract-address {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    border: 3px dashed #000;
    margin-top: 20px;
}

.contract-label {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.contract-value {
    color: #FFD700;
    font-size: 0.9rem;
    word-break: break-all;
    margin-bottom: 15px;
    font-family: monospace;
}

.copy-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
}

.copy-btn:hover {
    background: #FFC700;
    transform: scale(1.05);
}

/* Marquee Divider - Scrolling Text */
.marquee-divider {
    background: linear-gradient(90deg, #000 0%, #1a1a1a 50%, #000 100%);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 3px solid #FFD700;
    border-bottom: 3px solid #FFD700;
}

.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Bowlby One SC', cursive;
    font-size: 1.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 0 #FF6B00, 0 0 10px rgba(255, 215, 0, 0.5);
    padding: 0 50px;
    display: inline-block;
}

.marquee-reverse .marquee-content {
    animation: scrollReverse 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Hover effect untuk marquee */
.marquee-divider:hover .marquee-content {
    animation-play-state: paused;
}

/* About Section */
#about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4DD0E1 0%, #FFEB3B 50%, #FFD600 100%);
}

.section-title {
    font-family: 'Rubik Bubbles', cursive;
    font-size: 4rem;
    text-align: center;
    color: #000;
    text-shadow: 2px 2px 0 #fff, 4px 4px 0 #FFD700, 0 0 20px rgba(255, 215, 0, 0.4);
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-decoration: underline;
    text-decoration-style: wavy;
    font-weight: 400;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    border: 4px solid #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-heading {
    font-family: 'Bowlby One SC', cursive;
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 1px 1px 0 #FFD700;
}

.about-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 600;
}

/* Partners Section */
#partners {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFEB3B 0%, #FFD600 50%, #FDD835 100%);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo {
    text-align: center;
}

.partner-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 20px;
    border: 3px solid #000;
    transition: transform 0.3s;
}

.partner-logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.partner-logo p {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    font-family: 'Fredoka', sans-serif;
    text-shadow: 1px 1px 0 rgba(255, 215, 0, 0.5);
}

.partner-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00BCD4, #4DD0E1);
    border-radius: 20px;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s;
}

.partner-logo:hover .partner-placeholder {
    transform: scale(1.1) rotate(-5deg);
}

/* Socials Section */
#socials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFD600 0%, #FFEB3B 50%, #4DD0E1 100%);
}

.social-icons-bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    border: 3px solid #000;
}

.social-icon-large:hover {
    transform: translateY(-10px) scale(1.15);
    background: rgba(0, 0, 0, 0.95);
}

.social-icon-large img {
    width: 50px;
    height: 50px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 10px 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    #hero {
        min-height: auto;
        padding: 30px 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-left {
        min-width: auto;
    }

    .pepe-image,
    .Apu-image {
        max-width: 280px;
    }

    .hero-right {
        min-width: auto;
    }

    .social-icons-top {
        justify-content: center;
        gap: 10px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .marquee-divider {
        padding: 12px 0;
    }

    .marquee-content span {
        font-size: 1.2rem;
        padding: 0 30px;
    }

    .social-icon img {
        width: 28px;
        height: 28px;
    }

    .main-title {
        font-size: 4rem;
        text-shadow: 2px 2px 0 #FFD700, 4px 4px 0 #FF6B00;
    }

    .subtitle {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .contract-address {
        padding: 15px;
    }

    .contract-label {
        font-size: 0.9rem;
    }

    .contract-value {
        font-size: 0.75rem;
    }

    .copy-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    #about,
    #partners,
    #socials {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .about-content {
        padding: 25px 20px;
    }

    .about-heading {
        font-size: 1.6rem;
    }

    .about-text {
        font-size: 1rem;
        text-align: center;
    }

    .partners-grid {
        gap: 35px;
    }

    .partner-logo img,
    .partner-placeholder {
        width: 100px;
        height: 100px;
        padding: 15px;
    }

    .partner-logo p {
        font-size: 1rem;
        margin-top: 10px;
    }

    .social-icons-bottom {
        gap: 20px;
    }

    .social-icon-large {
        width: 70px;
        height: 70px;
    }

    .social-icon-large img {
        width: 45px;
        height: 45px;
    }

    footer {
        padding: 25px 15px;
    }

    footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    #hero {
        padding: 20px 10px;
    }

    .hero-content {
        gap: 20px;
    }

    .pepe-image,
    .Apu-image {
        max-width: 220px;
    }

    .social-icons-top {
        gap: 8px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon img {
        width: 24px;
        height: 24px;
    }

    .marquee-divider {
        padding: 10px 0;
    }

    .marquee-content span {
        font-size: 1rem;
        padding: 0 20px;
    }

    .main-title {
        font-size: 2.8rem;
        text-shadow: 2px 2px 0 #FFD700, 3px 3px 0 #FF6B00;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .contract-address {
        padding: 12px;
        border-width: 2px;
    }

    .contract-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .contract-value {
        font-size: 0.65rem;
        margin-bottom: 12px;
    }

    .copy-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        width: 100%;
    }

    #about,
    #partners,
    #socials {
        padding: 40px 10px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
        letter-spacing: 2px;
    }

    .about-content {
        padding: 20px 15px;
        border-width: 3px;
    }

    .about-heading {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .partners-grid {
        gap: 25px;
    }

    .partner-logo img,
    .partner-placeholder {
        width: 85px;
        height: 85px;
        padding: 12px;
        border-width: 2px;
    }

    .partner-placeholder {
        font-size: 1.2rem;
    }

    .partner-logo p {
        font-size: 0.9rem;
        margin-top: 8px;
    }

    .social-icons-bottom {
        gap: 15px;
    }

    .social-icon-large {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }

    .social-icon-large img {
        width: 38px;
        height: 38px;
    }

    footer {
        padding: 20px 10px;
    }

    footer p {
        font-size: 0.85rem;
        margin: 8px 0;
    }
}

@media (max-width: 360px) {
    .pepe-image,
    .Apu-image {
        max-width: 180px;
    }

    .main-title {
        font-size: 2.3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .about-heading {
        font-size: 1.2rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .partner-logo img,
    .partner-placeholder {
        width: 75px;
        height: 75px;
    }

    .partner-logo p {
        font-size: 0.8rem;
    }

    .social-icon-large {
        width: 55px;
        height: 55px;
    }

    .social-icon-large img {
        width: 35px;
        height: 35px;
    }
}
