/* ============================================
   KANGEROO MEMECOIN COMPLETE REDESIGN
   Bold, Wild, Energetic, Playful
   ============================================ */

/* === WILD TYPOGRAPHY === */
h1, h2 {
    font-family: "Alfa Slab One", cursive !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    text-shadow:
        4px 4px 0 #e7caca,
        -2px -2px 0 #FFD700,
        0 0 30px rgba(255, 107, 53, 0.8) !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}

h1 {
    font-size: 72px !important;
    background: linear-gradient(45deg, #FFD700, #FF6B35, #FF1493, #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow:
        4px 4px 0 #000,
        -2px -2px 0 #FFD700,
        0 0 30px rgba(255, 107, 53, 0.8) !important;
}

h2 {
    font-size: 56px !important;
}

h3 {
    font-size: 36px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    color: #FFD700 !important;
    text-shadow: 3px 3px 0 #FF6B35, -1px -1px 0 #000 !important;
}

/* === ANIMATED BACKGROUNDS === */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatingKangaroo {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes tiltShake {
    0%, 100% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
}

body {
    background: #0a0118 !important;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 40%);
    position: relative;
    overflow-x: hidden;
}

/* Floating animated shapes in background */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    animation: floatingKangaroo 8s ease-in-out infinite;
}

body::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
    top: 10%;
    left: -100px;
}

body::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FF1493 0%, transparent 70%);
    bottom: 10%;
    right: -150px;
    animation-delay: 2s;
}

/* === HERO SECTION REDESIGN === */
.hero-section {
    min-height: 100vh !important;
    background:
        linear-gradient(135deg, rgba(10, 1, 24, 0.9) 0%, rgba(45, 27, 61, 0.8) 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23FFD700" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') !important;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '🦘';
    position: absolute;
    font-size: 400px;
    opacity: 0.05;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    animation: spinSlow 60s linear infinite;
}

.welcome-content h1 {
    position: relative;
    display: inline-block;
}

.welcome-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #FFD700, #FF6B35, #FF1493);
    transform: skewX(-15deg);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
}

.welcome-content p {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.8 !important;
}

/* === CHUNKY CARDS WITH PERSONALITY === */
.service_single_content,
.services-block-four,
.single-testimonial {
    position: relative !important;
    border: 6px solid #FFD700 !important;
    border-radius: 30px !important;
    background: linear-gradient(145deg, #1a0b2e 0%, #2d1b3d 100%) !important;
    padding: 40px !important;
    transform: rotate(-1deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    box-shadow:
        12px 12px 0 #FF6B35,
        -6px -6px 0 rgba(255, 20, 147, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3) !important;
}

.service_single_content:hover,
.services-block-four:hover,
.single-testimonial:hover {
    transform: rotate(1deg) scale(1.08) translateY(-10px) !important;
    border-color: #FF1493 !important;
    box-shadow:
        18px 18px 0 #FF1493,
        -8px -8px 0 #FFD700,
        0 0 80px rgba(255, 107, 53, 0.6) !important;
}

.service_single_content:nth-child(even) {
    transform: rotate(1.5deg);
}

/* === STAMP/BADGE EFFECTS === */
.service_single_content::before,
.services-block-four::before {
    content: '⚡';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF1493 0%, #FF6B35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 5px solid #FFD700;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.6);
    animation: spinSlow 10s linear infinite;
    z-index: 10;
}

.service_single_content:nth-child(2)::before { content: '🚀'; }
.service_single_content:nth-child(3)::before { content: '💎'; }

/* === DIAGONAL SECTIONS === */
.darky, .section-padding-100, .section-padding-100-70 {
    position: relative;
    overflow: visible !important;
}

.darky::before,
.section-padding-100::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    z-index: -1;
}

.darky::before {
    top: -50px;
    transform: skewY(-2deg);
    background: linear-gradient(90deg, #FF6B35 0%, #FF1493 100%);
}

/* === WILD BUTTONS === */
.copy-btn, .btn {
    position: relative !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    padding: 0 !important;
    height: 60px !important;
    line-height: 60px !important;
    padding-left: 50px !important;
    padding-right: 50px !important;
    border: 5px solid #000 !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C42 100%) !important;
    color: #000 !important;
    text-shadow: 1px 1px 0 #fff !important;
    box-shadow:
        6px 6px 0 #FF1493,
        12px 12px 0 rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.6) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    text-align: center !important;
}

.copy-btn:hover, .btn:hover {
    transform: translate(4px, 4px) scale(1.05) !important;
    box-shadow:
        2px 2px 0 #FF1493,
        4px 4px 0 rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.8) !important;
    background: linear-gradient(135deg, #FF1493 0%, #FFD700 100%) !important;
    color: #fff !important;
}

/* === STICKER DECORATIONS === */
.section-heading::before {
    content: '📈';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    font-size: 60px;
    opacity: 0.3;
    animation: tiltShake 2s ease-in-out infinite;
}

/* === CONTRACT ADDRESS BOX === */
.contract-add {
    background: linear-gradient(145deg, #2d1b3d 0%, #1a0b2e 100%) !important;
    border: 5px dashed #FFD700 !important;
    padding: 20px !important;
    border-radius: 25px !important;
    position: relative;
    box-shadow:
        0 0 0 10px rgba(255, 215, 0, 0.1),
        8px 8px 0 #FF6B35,
        0 0 50px rgba(255, 107, 53, 0.4) !important;
}

.contract-add::before {
    content: '🔥 HOT 🔥';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF1493;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 14px;
    border: 3px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.6);
}

/* === IMAGE EFFECTS === */
.floating-anim, .hedo-wrapper img, .comp-img {
    animation: floatingKangaroo 6s ease-in-out infinite !important;
    filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.4)) !important;
    border-radius: 30px !important;
    border: 6px solid transparent;
    background:
        linear-gradient(#1a0b2e, #1a0b2e) padding-box,
        linear-gradient(135deg, #FFD700, #FF6B35, #FF1493) border-box !important;
}

/* === SECTION TITLES WITH IMPACT === */
.section-heading h2 {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF1493 100%);
    border: 6px solid #FFD700;
    border-radius: 25px;
    transform: rotate(-2deg);
    box-shadow:
        10px 10px 0 rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.5);
    animation: tiltShake 3s ease-in-out infinite;
}

/* === NAVIGATION OVERHAUL === */
.navbar {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 100%) !important;
    border-bottom: 5px solid #FFD700 !important;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3) !important;
    padding: 15px 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

.navbar .container {
    max-width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.navbar-brand img {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.9)) !important;
}

.nav-link {
    font-weight: 900 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FF6B35);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* === FOOTER REDESIGN === */
.footer-content-area {
    background:
        linear-gradient(135deg, #0a0118 0%, #1a0b2e 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="30" fill="none" stroke="%23FFD700" stroke-width="2" opacity="0.1"/></svg>') !important;
    border-top: 8px solid !important;
    border-image: linear-gradient(90deg, #FFD700, #FF6B35, #FF1493, #FFD700) 1 !important;
}

/* === LIST ITEMS WITH BULLETS === */
.welcome-content ul li {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    margin: 15px 0;
    position: relative;
    padding-left: 40px;
}

.welcome-content ul li::before {
    content: '🦘';
    position: absolute;
    left: 0;
    font-size: 24px;
    animation: kangarooBounce 2s ease-in-out infinite;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    h1 { font-size: 42px !important; }
    h2 { font-size: 36px !important; }
    h3 { font-size: 28px !important; }

    .service_single_content,
    .services-block-four {
        transform: rotate(0deg) !important;
    }

    .copy-btn, .btn {
        height: 50px !important;
        line-height: 50px !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        font-size: 16px !important;
    }

    .navbar .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* === SCROLL ANIMATIONS === */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: slideInUp 0.8s ease-out forwards;
}

/* === EXTRA WILD TOUCHES === */
.who-we-contant {
    background: rgba(255, 215, 0, 0.05) !important;
    border-left: 8px solid #FF6B35 !important;
    padding: 30px !important;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.token-information li {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.token-information li:hover {
    transform: scale(1.15) rotate(-3deg);
}

/* === PULSING GLOW EFFECT === */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 80px rgba(255, 107, 53, 0.6);
    }
}

.box-shadow {
    animation: pulseGlow 2s ease-in-out infinite;
}
