/* Comic Book CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Bangers', cursive;
    background: #fff3e0;
    color: #2c3e50;
    line-height: 1.4;
    overflow-x: hidden;
    position: relative;
}

/* Comic Background */
.comic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: 
        radial-gradient(circle at 25% 25%, #ffeb3b 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #e91e63 0%, transparent 50%),
        linear-gradient(135deg, #fff3e0 0%, #f5f5dc 50%, #fff8dc 100%);
}

.halftone-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.halftone-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2c3e50;
    border-radius: 50%;
    animation: halftoneFloat 4s ease-in-out infinite;
}

@keyframes halftoneFloat {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.1; }
}

.comic-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 0deg, transparent 0deg, rgba(255, 193, 7, 0.1) 45deg, transparent 90deg),
        conic-gradient(from 90deg, transparent 0deg, rgba(233, 30, 99, 0.1) 45deg, transparent 90deg);
    animation: raysRotate 20s linear infinite;
}

@keyframes raysRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 4px solid #2c3e50;
    box-shadow: 0 4px 0 #e74c3c;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-burst {
    position: relative;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border: 3px solid #2c3e50;
    border-radius: 50%;
    box-shadow: 0 4px 0 #e74c3c;
}

.pow-effect {
    position: absolute;
    top: -10px;
    right: -15px;
    background: #ffeb3b;
    color: #2c3e50;
    padding: 2px 8px;
    border: 2px solid #2c3e50;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(15deg);
    animation: powBounce 2s ease-in-out infinite;
}

@keyframes powBounce {
    0%, 100% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    text-shadow: 3px 3px 0 #2c3e50;
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 0.8rem;
    color: #2c3e50;
    font-family: 'Fredoka One', cursive;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: #e74c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    border: 3px solid #2c3e50;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #c0392b;
    transition: all 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #c0392b;
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #c0392b;
}

.button-burst {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffeb3b;
    color: #2c3e50;
    padding: 2px 6px;
    border: 2px solid #2c3e50;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: bold;
    animation: burstSpin 3s linear infinite;
}

@keyframes burstSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    position: relative;
}

.hero-panel {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: center;
}

.speech-bubble {
    position: relative;
    background: white;
    border: 4px solid #2c3e50;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 8px 0 #e74c3c;
    margin-bottom: 2rem;
}

.big-bubble {
    grid-column: 1;
    grid-row: 1;
}

.bubble-content {
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.9;
    margin-bottom: 1rem;
}

.title-word {
    display: block;
    color: #2c3e50;
    text-shadow: 4px 4px 0 #e74c3c, 8px 8px 0 #ffeb3b;
    font-family: 'Bungee', cursive;
}

.aura-word {
    color: #e74c3c;
    text-shadow: 4px 4px 0 #ffeb3b, 8px 8px 0 #2c3e50;
    transform: scale(1.2);
    display: inline-block;
    animation: auraGlow 2s ease-in-out infinite;
}

@keyframes auraGlow {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.3); }
}

.sound-effect {
    font-size: 1.2rem;
    color: #e91e63;
    font-weight: bold;
    margin-top: 1rem;
    animation: soundWave 1.5s ease-in-out infinite;
}

@keyframes soundWave {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bubble-tail {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #2c3e50;
}

.bubble-tail::after {
    content: '';
    position: absolute;
    top: -24px;
    left: -16px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid white;
}

.hero-dog-panel {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    text-align: center;
}

.hero-dog {
    width: 250px;
    height: 250px;
    border: 5px solid #2c3e50;
    border-radius: 50%;
    box-shadow: 0 10px 0 #e74c3c;
    animation: dogBounce 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes dogBounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

.aura-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: 
        radial-gradient(circle, transparent 40%, #ffeb3b 41%, #ffeb3b 43%, transparent 44%),
        radial-gradient(circle, transparent 50%, #e91e63 51%, #e91e63 53%, transparent 54%);
    border-radius: 50%;
    animation: auraRotate 8s linear infinite;
    z-index: 1;
}

@keyframes auraRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.power-burst {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ffeb3b;
    border: 4px solid #2c3e50;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: burstPulse 2s ease-in-out infinite;
    z-index: 3;
}

.burst-text {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
}

@keyframes burstPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-text-panel {
    grid-column: 1;
    grid-row: 2;
}

.comic-text-box {
    background: #f8f9fa;
    border: 3px solid #2c3e50;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 0 #e74c3c;
}

.hero-description {
    font-size: 1.2rem;
    color: #2c3e50;
    text-align: center;
}

.emphasis {
    color: #e74c3c;
    font-weight: bold;
    text-transform: uppercase;
}

/* Contract Address Panel */
.ca-panel {
    background: #ffeb3b;
    border: 4px solid #2c3e50;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 6px 0 #e74c3c;
    position: relative;
    overflow: hidden;
}

.ca-panel::before {
    content: '💎';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.ca-label {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.ca-address {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.8rem;
    border: 2px solid #2c3e50;
    border-radius: 10px;
    margin-bottom: 1rem;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ca-address:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.02);
}

.ca-copy-btn {
    background: #e74c3c;
    color: white;
    border: 3px solid #2c3e50;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 0 #c0392b;
    transition: all 0.2s ease;
}

.ca-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #c0392b;
}

.ca-copy-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #c0392b;
}

.copy-effect {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffeb3b;
    color: #2c3e50;
    padding: 2px 8px;
    border: 2px solid #2c3e50;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    opacity: 0;
    transform: rotate(15deg) scale(1);
    transition: all 0.3s ease;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.comic-button {
    position: relative;
    padding: 1rem 2rem;
    border: 3px solid #2c3e50;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.comic-button.primary {
    background: #e74c3c;
    color: white;
    box-shadow: 0 6px 0 #c0392b;
}

.comic-button.secondary {
    background: #3498db;
    color: white;
    box-shadow: 0 6px 0 #2980b9;
}

.comic-button:hover {
    transform: translateY(-2px);
}

.comic-button.primary:hover {
    box-shadow: 0 8px 0 #c0392b;
}

.comic-button.secondary:hover {
    box-shadow: 0 8px 0 #2980b9;
}

.comic-button:active {
    transform: translateY(2px);
}

.button-effect {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffeb3b;
    color: #2c3e50;
    padding: 2px 8px;
    border: 2px solid #2c3e50;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    opacity: 0;
    transform: rotate(15deg) scale(1);
    transition: all 0.3s ease;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comic-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #2c3e50;
    text-shadow: 4px 4px 0 #e74c3c, 8px 8px 0 #ffeb3b;
    font-family: 'Bungee', cursive;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.comic-underline {
    width: 150px;
    height: 6px;
    background: linear-gradient(90deg, #e74c3c, #ffeb3b, #e74c3c);
    margin: 0 auto;
    border-radius: 3px;
    border: 2px solid #2c3e50;
}

/* Story Section */
.story {
    background: linear-gradient(135deg, #fff3e0 0%, #f5f5dc 100%);
    position: relative;
}

.comic-panels {
    display: grid;
    gap: 3rem;
}

.story-panel {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.story-panel.panel-animate {
    opacity: 1;
    transform: translateX(0);
}

.panel-border {
    background: white;
    border: 4px solid #2c3e50;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 0 #e74c3c;
    position: relative;
    overflow: hidden;
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.panel-1 .panel-content {
    grid-template-columns: 300px 1fr;
}

.panel-2 .panel-content {
    grid-template-columns: 1fr 300px;
}

.panel-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 3px solid #2c3e50;
    border-radius: 15px;
    box-shadow: 0 4px 0 #e74c3c;
}

.panel-text h3 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Bungee', cursive;
}

.panel-text p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.thought-bubble {
    position: absolute;
    top: -30px;
    right: 50px;
    background: #fff;
    border: 3px solid #2c3e50;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    max-width: 200px;
    box-shadow: 0 4px 0 #3498db;
}

.thought-bubble::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid #2c3e50;
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 100%;
}

.bubble-text {
    font-size: 0.9rem;
    color: #2c3e50;
    text-align: center;
}

.speed-lines,
.action-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 10px,
            rgba(231, 76, 60, 0.1) 11px,
            rgba(231, 76, 60, 0.1) 12px
        );
    opacity: 0.5;
}

/* Powers Section */
.powers {
    background: #f8f9fa;
}

.powers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.power-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.power-card.panel-animate {
    opacity: 1;
    transform: translateY(0);
}

.card-border {
    background: white;
    border: 4px solid #2c3e50;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 0 #e74c3c;
    position: relative;
    transition: all 0.3s ease;
}

.card-border:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 0 #e74c3c;
}

.power-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.power-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Bungee', cursive;
}

.power-card p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
}

.card-effect {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffeb3b;
    color: #2c3e50;
    padding: 5px 12px;
    border: 3px solid #2c3e50;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    transform: rotate(15deg);
    opacity: 0;
    transition: all 0.3s ease;
}

.card-border:hover .card-effect {
    opacity: 1;
    transform: rotate(15deg) scale(1.1);
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #fff3e0 0%, #f5f5dc 100%);
}

.manga-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.manga-panel {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.manga-panel.panel-animate {
    opacity: 1;
    transform: scale(1);
}

.panel-frame {
    position: relative;
    background: white;
    border: 4px solid #2c3e50;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 0 #e74c3c;
    transition: all 0.3s ease;
}

.panel-frame:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 0 #e74c3c;
}

.panel-frame img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.panel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 62, 80, 0.9));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.panel-frame:hover .panel-overlay {
    transform: translateY(0);
}

.manga-text {
    text-align: center;
    color: white;
}

.manga-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Bungee', cursive;
}

.sound-fx {
    background: #ffeb3b;
    color: #2c3e50;
    padding: 5px 15px;
    border: 2px solid #2c3e50;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
    transform: rotate(-5deg);
}

.panel-border-effect {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid #ffeb3b;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.panel-frame:hover .panel-border-effect {
    opacity: 1;
}

/* Community Section */
.community {
    background: #f8f9fa;
}

.community-panel {
    max-width: 900px;
    margin: 0 auto;
}

.main-panel .panel-border {
    background: white;
    border: 5px solid #2c3e50;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 0 #e74c3c;
    position: relative;
    overflow: hidden;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-dog {
    position: relative;
    text-align: center;
}

.community-dog img {
    width: 200px;
    height: 200px;
    border: 4px solid #2c3e50;
    border-radius: 50%;
    box-shadow: 0 8px 0 #e74c3c;
}

.community-bubble {
    position: absolute;
    top: -50px;
    right: -100px;
    background: white;
    border: 3px solid #2c3e50;
    border-radius: 25px;
    padding: 1rem 1.5rem;
    max-width: 250px;
    box-shadow: 0 6px 0 #3498db;
    font-size: 0.9rem;
}

.community-cta {
    text-align: center;
}

/* Community CA Highlight */
.ca-highlight {
    background: linear-gradient(135deg, #ffeb3b, #ffd700);
    border: 4px solid #2c3e50;
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 8px 0 #e74c3c;
    animation: caGlow 3s ease-in-out infinite;
}

@keyframes caGlow {
    0%, 100% { box-shadow: 0 8px 0 #e74c3c; }
    50% { box-shadow: 0 8px 0 #e74c3c, 0 0 20px rgba(255, 235, 59, 0.6); }
}

.ca-highlight-label {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: 'Bungee', cursive;
}

.ca-highlight-address {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border: 3px solid #2c3e50;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.ca-highlight-address:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.02);
    box-shadow: 0 4px 0 #3498db;
}

.ca-highlight-note {
    font-size: 0.9rem;
    color: #2c3e50;
    font-style: italic;
    font-weight: bold;
}

.mega-button {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1.5rem 3rem;
    border: 4px solid #2c3e50;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 0 #a93226;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.mega-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 0 #a93226;
}

.mega-button:active {
    transform: translateY(3px);
    box-shadow: 0 5px 0 #a93226;
}

.button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffeb3b, #e91e63, #3498db, #ffeb3b);
    border-radius: 54px;
    z-index: -1;
    animation: glowRotate 3s linear infinite;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.button-sound {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #ffeb3b;
    color: #2c3e50;
    padding: 5px 12px;
    border: 3px solid #2c3e50;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.8rem;
    transform: rotate(15deg);
    opacity: 0;
    transition: all 0.3s ease;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.stat-bubble {
    background: #3498db;
    color: white;
    padding: 1rem;
    border: 3px solid #2c3e50;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 0 #2980b9;
    min-width: 80px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.energy-burst {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffeb3b 0%, transparent 70%);
    border-radius: 50%;
    animation: energyPulse 2s ease-in-out infinite;
}

@keyframes energyPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 0.4; }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 5px solid #e74c3c;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-panel {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    position: relative;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 0 #e74c3c;
}

.footer-text {
    flex: 1;
}

.copyright {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.tagline {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-style: italic;
}

.footer-community {
    text-align: center;
}

/* Footer CA */
.footer-ca {
    background: rgba(255, 235, 59, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.footer-ca-label {
    color: #bdc3c7;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.footer-ca-address {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #ffffff;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-ca-address:hover {
    background: rgba(255, 235, 59, 0.2);
    color: #ffeb3b;
}

.footer-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    border: 3px solid white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #2980b9;
    transition: all 0.3s ease;
    position: relative;
}

.footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #2980b9;
}

.button-spark {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #34495e;
}

.comic-divider {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #ffeb3b, #e74c3c);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.final-message {
    color: #bdc3c7;
    font-size: 1rem;
    font-style: italic;
}

/* Comic Transition Effects */
.comic-transition {
    animation: comicZoom 0.3s ease-in-out;
}

@keyframes comicZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .big-bubble {
        grid-column: 1;
        grid-row: 1;
    }
    
    .hero-dog-panel {
        grid-column: 1;
        grid-row: 2;
    }
    
    .hero-text-panel {
        grid-column: 1;
        grid-row: 3;
    }
    
    .panel-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .community-bubble {
        position: static;
        margin: 1rem auto;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 4rem 1rem 2rem;
    }
    
    .hero-dog {
        width: 200px;
        height: 200px;
    }
    
    .aura-lines {
        width: 250px;
        height: 250px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .comic-button {
        width: 200px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .manga-panels {
        grid-template-columns: 1fr;
    }
    
    .powers-grid {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        flex-wrap: wrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-panel {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .comic-title {
        font-size: 2rem;
    }
    
    .speech-bubble,
    .comic-text-box {
        padding: 1rem;
    }
    
    .mega-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .panel-border {
        padding: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
a:focus,
button:focus {
    outline: 3px solid #3498db;
    outline-offset: 3px;
}

/* Hero entrance animation */
.hero-loaded .speech-bubble {
    animation: bubblePop 0.6s ease-out;
}

.hero-loaded .hero-dog {
    animation: dogBounce 3s ease-in-out infinite, dogEntrance 1s ease-out;
}

@keyframes bubblePop {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes dogEntrance {
    0% { transform: scale(0) rotate(180deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}