* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kalam', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0f0f0f;
    min-height: 100vh;
    background-attachment: fixed;
}

header {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid rgba(255, 107, 0, 0.4);
    color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav h1 {
    font-size: 2rem;
    color: #ff6600;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    letter-spacing: 0px;
    font-family: 'Permanent Marker', cursive;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
    color: #ff4500;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 102, 0, 0.2);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

.hero {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 160, 122, 0.6) 0%, rgba(255, 107, 53, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
    color: #ffffff;
    padding: 4rem 2rem;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 2px 2px 8px rgba(255, 107, 53, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 8px rgba(255, 107, 53, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 2px 2px 12px rgba(255, 107, 53, 1), 0 0 30px rgba(255, 255, 255, 0.7);
    }
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ff6b00;
    position: relative;
    font-family: 'Exo 2', 'Saira', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #1a1a1a;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    color: #ff6b00;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card p {
    color: #1a1a1a;
}

.about-card ul {
    list-style: none;
    padding-left: 0;
}

.about-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: #1a1a1a;
    position: relative;
}

.about-card li::before {
    content: '⚡';
    position: absolute;
    left: 0;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.transformation-card {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    color: #1a1a1a;
}

.transformation-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.transformation-card.super {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #ff8c00;
}

.transformation-card.god {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-color: #ff0000;
}

.transformation-card.ultra {
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 100%);
    border-color: #9400d3;
    box-shadow: 0 0 20px rgba(148, 0, 211, 0.5);
}

.transformation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.transformation-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.power-level {
    font-weight: bold;
    color: #ff6b00;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.technique-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-5px);
}

.technique-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.technique-card strong {
    color: #ffd700;
}

.battle-timeline {
    position: relative;
    padding-left: 2rem;
}

.battle-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.battle-badge {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.battle-content {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1;
    border-left: 4px solid #ff8c00;
    color: #1a1a1a;
}

.battle-content h3 {
    color: #ff6b00;
    margin-bottom: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item svg {
    width: 100%;
    display: block;
}

.quote-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
}

.quote-section blockquote {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    line-height: 1.8;
}

.quote-section cite {
    display: block;
    margin-top: 1rem;
    text-align: right;
    font-size: 1rem;
    opacity: 0.9;
}

.manga-facts-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
}

.manga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.manga-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff8c00;
    transition: all 0.3s ease;
}

.manga-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
    border-left-width: 6px;
}

.manga-card h3 {
    color: #ff6b00;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.manga-card p {
    line-height: 1.6;
    color: #ffffff;
}

.manga-card strong {
    color: #ffa500;
    font-weight: 600;
}

.youtube-section {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: white;
}

.youtube-section h2 {
    color: white;
}

.youtube-section h2::after {
    background: linear-gradient(90deg, #fff, #ffa500);
}

.channel-info {
    text-align: center;
    margin-bottom: 3rem;
}

.channel-info p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.youtube-button {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.youtube-button:hover {
    background: #cc0000;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder-info {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-placeholder-info svg {
    width: 100%;
    height: auto;
    display: block;
}

.video-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

    margin-bottom: 1rem;
}

.video-comments {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.video-comments h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
.video-card p {
    color: #ffffff;
}

.comments-section {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 40px;
}

.comment-form button {
    margin-top: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

.comment-form button:hover {
    background: #cc0000;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.4);
}
    transform: scale(1.05);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
}

.comments-list:empty {
    display: none;
}

.comment {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.comment-author {
    font-weight: bold;
    color: #ff6b00;
}

.comment-date {
    color: #666;
}

.comment-text {
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    color: #ff6b00;
    margin-bottom: 1rem;
}

.stat-bar {
    width: 100%;
    height: 30px;
    background: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    border-radius: 15px;
    transition: width 1s ease;
}

.stat-card p {
    text-align: right;
    font-weight: bold;
    color: #666;
}

footer {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 50%, #ffa500 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
}

footer p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
        justify-content: center;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 2rem 1.5rem;
    }
}
