@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&family=Playfair+Display:wght@700;900&display=swap');

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #000;
    overflow-x: hidden;
    line-height: 1.8;
}

/* ===== NAVIGATION ===== */
.nav-menu {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #f89b29;
    display: block;
    transition: all 0.5s ease;
    position: relative;
}

.nav-dot::after {
    content: attr(title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(248, 155, 41, 0.9);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-dot:hover::after {
    opacity: 1;
}

.nav-dot:hover {
    background: #f89b29;
    transform: scale(1.4);
    box-shadow: 0 0 25px rgba(248, 155, 41, 0.8);
}

/* ===== SECTIONS BASE ===== */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 50px;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.5s;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* ===== SCROLL INDICATORS ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.scroll-text {
    font-size: 0.9rem;
    color: #f89b29;
    font-weight: 600;
    opacity: 0;
    animation: fadeIn 1s forwards 2s;
}

.scroll-arrow {
    font-size: 2.5rem;
    color: #f89b29;
    animation: bounce 2s infinite;
}

.scroll-indicator.light .scroll-text,
.scroll-indicator.light .scroll-arrow {
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator.warm .scroll-text,
.scroll-indicator.warm .scroll-arrow {
    color: #ff6b35;
}

.scroll-indicator.golden .scroll-text,
.scroll-indicator.golden .scroll-arrow {
    color: #ffd700;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

@keyframes fadeIn {
    to { opacity: 1; }
    from { opacity: 0; }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #000 100%);
    text-align: center;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #f89b29;
    border-radius: 50%;
    animation: fall 12s infinite linear;
    opacity: 0.4;
}

.particles span:nth-child(1) { left: 5%; animation-delay: 0s; }
.particles span:nth-child(2) { left: 15%; animation-delay: 1s; }
.particles span:nth-child(3) { left: 25%; animation-delay: 2s; }
.particles span:nth-child(4) { left: 35%; animation-delay: 0.5s; }
.particles span:nth-child(5) { left: 45%; animation-delay: 1.5s; }
.particles span:nth-child(6) { left: 55%; animation-delay: 2.5s; }
.particles span:nth-child(7) { left: 65%; animation-delay: 1.2s; }
.particles span:nth-child(8) { left: 75%; animation-delay: 2.2s; }
.particles span:nth-child(9) { left: 85%; animation-delay: 0.8s; }
.particles span:nth-child(10) { left: 95%; animation-delay: 1.8s; }
.particles span:nth-child(11) { left: 10%; animation-delay: 3s; }
.particles span:nth-child(12) { left: 20%; animation-delay: 3.5s; }
.particles span:nth-child(13) { left: 30%; animation-delay: 4s; }
.particles span:nth-child(14) { left: 70%; animation-delay: 4.5s; }
.particles span:nth-child(15) { left: 90%; animation-delay: 5s; }

@keyframes fall {
    0% { transform: translateY(-100px); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.5s ease;
}

.hero-image-frame {
    width: 280px;
    height: 280px;
    margin: 0 auto 40px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f89b29;
    box-shadow: 0 0 40px rgba(248, 155, 41, 0.4), 0 0 80px rgba(248, 155, 41, 0.2);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(248, 155, 41, 0.4), 0 0 80px rgba(248, 155, 41, 0.2); }
    50% { box-shadow: 0 0 60px rgba(248, 155, 41, 0.6), 0 0 100px rgba(248, 155, 41, 0.3); }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: all 0.5s;
}

.hero-image-frame:hover .hero-image {
    filter: grayscale(0);
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

.emotional-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
}

.word {
    display: inline-block;
    opacity: 0;
    animation: wordAppear 0.8s forwards;
}

.word:nth-child(1) { animation-delay: 0.5s; color: #ccc; }
.word:nth-child(2) { animation-delay: 0.8s; color: #aaa; }
.word:nth-child(3) { animation-delay: 1.1s; color: #888; }
.word:nth-child(4) { animation-delay: 1.4s; color: #f89b29; }

@keyframes wordAppear {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(20px); }
}

.hero-quote {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s forwards 2s;
    color: #f89b29;
}

/* CSS-Only Modal */
.hidden-checkbox {
    display: none;
}

.begin-journey-btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #f89b29, #ff6b35);
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(248, 155, 41, 0.4);
    transition: all 0.4s;
    opacity: 0;
    animation: fadeIn 1s forwards 2.5s;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.begin-journey-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(248, 155, 41, 0.6);
}

.begin-journey-btn:hover .btn-shine {
    left: 100%;
}

.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.hidden-checkbox:checked ~ .story-modal {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #2c2c44);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid #f89b29;
    max-width: 600px;
    text-align: center;
    transform: scale(0.7);
    transition: transform 0.5s;
}

.hidden-checkbox:checked ~ .story-modal .modal-content {
    transform: scale(1);
}

.modal-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #f89b29;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3);
}

.modal-content h3 {
    color: #f89b29;
    font-size: 2rem;
    margin-bottom: 20px;
}

.emotional-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.modal-close {
    display: inline-block;
    padding: 12px 35px;
    background: #f89b29;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(30px); }
}

/* ===== PAIN SECTION ===== */
.pain-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1f1f1f 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInTitle 1s forwards;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.6s; color: #f89b29; }

@keyframes slideInTitle {
    to { opacity: 1; transform: translateX(0); }
    from { opacity: 0; transform: translateX(-50px); }
}

.pain-intro {
    text-align: center;
    margin-bottom: 60px;
}

.emotional-paragraph {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

.emotional-paragraph.center {
    text-align: center;
}

/* Memory Cards */
.memory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.memory-card {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s;
    border: 2px solid rgba(248, 155, 41, 0.2);
}

.memory-card:hover {
    transform: translateY(-10px);
    border-color: #f89b29;
    box-shadow: 0 20px 40px rgba(248, 155, 41, 0.3);
}

.memory-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.memory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: all 0.5s;
}

.memory-card:hover .memory-image img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.memory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.9));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s;
}

.memory-card:hover .memory-overlay {
    opacity: 1;
}

.memory-text {
    color: #f89b29;
    font-style: italic;
    font-size: 1rem;
}

.memory-title {
    color: #f89b29;
    font-size: 1.5rem;
    padding: 20px 20px 10px;
    margin: 0;
}

.memory-desc {
    padding: 0 20px 20px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Turning Point */
.turning-point {
    margin: 80px 0;
}

.quote-box-large {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(248, 155, 41, 0.1);
    border-left: 5px solid #f89b29;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.quote-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f89b29;
    flex-shrink: 0;
}

blockquote {
    margin: 0;
}

blockquote p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
}

blockquote cite {
    color: #f89b29;
    font-size: 1rem;
    font-style: normal;
}

/* ===== BONDS SECTION ===== */
.bonds-section {
    background: linear-gradient(135deg, #f89b29 0%, #ffcc70 50%, #ffe5b4 100%);
}

.section-title.warm {
    color: #1a1a2e;
}

.title-line {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.team-showcase {
    margin: 60px auto;
    max-width: 800px;
    text-align: center;
}

.team-image {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 5px solid #fff;
    transition: all 0.5s;
}

.team-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.team-caption {
    margin-top: 30px;
    color: #1a1a2e;
}

.team-caption h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-caption p {
    font-size: 1.1rem;
    color: #333;
}

/* Bond Timeline */
.bond-timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto;
    padding: 20px;
}

.bond-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b35, #f89b29);
}

.bond-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.bond-item:nth-child(1) { animation-delay: 0.2s; }
.bond-item:nth-child(2) { animation-delay: 0.4s; }
.bond-item:nth-child(3) { animation-delay: 0.6s; }
.bond-item:nth-child(4) { animation-delay: 0.8s; }

.bond-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 0 0 5px #f89b29;
    z-index: 2;
    transition: all 0.5s;
}

.bond-item:hover .bond-marker {
    transform: translateX(-50%) scale(1.15) rotate(5deg);
    box-shadow: 0 0 0 5px #ff6b35, 0 0 30px rgba(248, 155, 41, 0.5);
}

.marker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bond-content {
    width: 42%;
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.5s;
}

.bond-item.left .bond-content {
    margin-right: auto;
}

.bond-item.right .bond-content {
    margin-left: auto;
}

.bond-content:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(248, 155, 41, 0.4);
}

.bond-content h3 {
    color: #f89b29;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.bond-emotion {
    font-style: italic;
    color: #ff6b35;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
    border-left: 3px solid #f89b29;
    padding-left: 15px;
}

.bond-story {
    color: #333;
    line-height: 1.8;
}

/* ===== BATTLES SECTION ===== */
.battles-section {
    background: linear-gradient(135deg, #8b0000 0%, #ff0000 50%, #ff4500 100%);
}

.section-title.intense {
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.battle-showcase {
    margin: 60px 0;
}

.battle-major {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.battle-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.battle-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.battle-image-wrap:hover .battle-img {
    transform: scale(1.1);
}

.battle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.battle-overlay h3 {
    font-size: 2rem;
    color: #ffd700;
}

.battle-story h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.battle-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #ffcc70;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
    padding-left: 20px;
}

.battle-desc {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
}

.battle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.battle-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.5s;
}

.battle-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255,215,0,0.4);
}

.battle-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.battle-card:hover img {
    transform: scale(1.15);
}

.battle-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}

.battle-info h4 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.battle-info p {
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.battle-emotion {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255,215,0,0.2);
    border: 1px solid #ffd700;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ffd700;
}

.wisdom-section {
    margin: 80px 0;
}

.naruto-wisdom {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 2px solid rgba(255,215,0,0.3);
}

.naruto-wisdom p {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.naruto-wisdom cite {
    color: #ffd700;
    font-size: 1.2rem;
}

/* ===== DREAM SECTION ===== */
.dream-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff8dc 100%);
    color: #1a1a2e;
}

.section-title.golden-text {
    color: #ff6b35;
}

.hokage-reveal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.hokage-image-container {
    position: relative;
}

.hokage-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    border: 6px solid #fff;
    transition: all 0.5s;
}

.hokage-image:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 40px 100px rgba(255,107,53,0.5);
}

.hokage-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255,215,0,0.3), transparent);
    z-index: -1;
    animation: pulse 3s infinite;
}

.hokage-text h3 {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 30px;
}

.achievement-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 80px 0;
}

.achievement {
    background: rgba(255,255,255,0.9);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.5s;
    border: 2px solid transparent;
}

.achievement:hover {
    transform: translateY(-10px) rotate(2deg);
    border-color: #f89b29;
    box-shadow: 0 20px 50px rgba(248, 155, 41, 0.4);
}

.achievement-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.achievement h4 {
    font-size: 1.5rem;
    color: #f89b29;
    margin-bottom: 10px;
}

.achievement p {
    color: #333;
    line-height: 1.6;
}

.legacy-section {
    margin: 80px 0;
}

.legacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255,255,255,0.9);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.legacy-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.legacy-text h3 {
    font-size: 2.5rem;
    color: #f89b29;
    margin-bottom: 20px;
}

.legacy-text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
}

.final-message {
    margin: 80px 0;
}

.message-box {
    background: rgba(26, 26, 46, 0.9);
    padding: 60px;
    border-radius: 20px;
    border: 3px solid #f89b29;
    box-shadow: 0 20px 60px rgba(248, 155, 41, 0.3);
}

.message-box h3 {
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
}

.lessons {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.lessons li {
    font-size: 1.3rem;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(248, 155, 41, 0.1);
    border-left: 4px solid #f89b29;
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s;
}

.lessons li:hover {
    transform: translateX(10px);
    background: rgba(248, 155, 41, 0.2);
}

.lessons strong {
    color: #eed754;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    padding: 60px 40px;
    border-top: 3px solid #f89b29;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-quote {
    margin-bottom: 40px;
}

.footer-quote p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: #f89b29;
    font-weight: 300;
}

.footer-credits {
    margin-bottom: 30px;
}

.creator {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.creator strong {
    color: #f89b29;
    font-size: 1.4rem;
}

.dedication {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.9rem;
    color: rgba(248, 155, 41, 0.8);
}

.footer-decoration {
    font-size: 1.5rem;
    letter-spacing: 10px;
    color: #f89b29;
    margin-top: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        right: 15px;
        gap: 15px;
    }
    
    section {
        padding: 60px 25px;
    }
    
    .battle-major,
    .hokage-reveal,
    .legacy-content {
        grid-template-columns: 1fr;
    }
    
    .bond-timeline::before {
        left: 30px;
    }
    
    .bond-marker {
        left: 30px;
        transform: translateX(0);
        width: 60px;
        height: 60px;
    }
    
    .bond-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
    }
    
    .quote-box-large {
        flex-direction: column;
        padding: 30px;
    }
}