@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    line-height: 1.4;
    color: #fff;
    background: linear-gradient(45deg, #000 0%, #1a0000 50%, #000 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* AGGRESSIVE HERO SECTION */
.hero {
    text-align: center;
    padding: 100px 0;
    color: #fff;
    position: relative;
    background: linear-gradient(135deg, #ff0000 0%, #000000 100%);
    border-bottom: 5px solid #ff0000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="100" fill="%23ffffff" opacity="0.03">🔥</text></svg>') repeat;
    animation: fire-bg 20s linear infinite;
}

@keyframes fire-bg {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.main-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 
        3px 3px 0px #ff0000,
        6px 6px 0px #000000,
        9px 9px 20px rgba(255, 0, 0, 0.5);
    animation: headbang 2s ease-in-out infinite;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes headbang {
    0%, 100% { transform: rotateZ(0deg) scale(1); }
    25% { transform: rotateZ(-2deg) scale(1.02); }
    75% { transform: rotateZ(2deg) scale(1.02); }
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff0000;
    text-shadow: 2px 2px 0px #000;
}

.haider-emoji {
    font-size: 5rem;
    animation: mosh 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px #ff0000);
}

@keyframes mosh {
    0%, 100% { transform: translateY(0) rotateZ(0deg); }
    25% { transform: translateY(-20px) rotateZ(-10deg); }
    50% { transform: translateY(10px) rotateZ(10deg); }
    75% { transform: translateY(-10px) rotateZ(-5deg); }
}

/* MAIN CONTENT - AGGRESSIVE STYLING */
main {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 3px solid #ff0000;
    border-radius: 0;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 
        0 0 50px rgba(255, 0, 0, 0.3),
        inset 0 0 50px rgba(255, 0, 0, 0.1);
    position: relative;
}

main::before {
    content: 'BREAK STUFF';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    color: #000;
    padding: 5px 20px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    border: 2px solid #000;
}

section {
    margin-bottom: 80px;
    border-bottom: 2px solid #333;
    padding-bottom: 40px;
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        2px 2px 0px #000,
        4px 4px 10px rgba(255, 0, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

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

.intro {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 700;
    color: #ccc;
    text-shadow: 1px 1px 0px #000;
}

/* AGGRESSIVE FACTS GRID */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.fact-card {
    background: linear-gradient(135deg, #ff0000 0%, #990000 100%);
    padding: 40px;
    border: 3px solid #000;
    text-align: center;
    color: #fff;
    transform: skew(-2deg);
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.fact-card:hover {
    transform: skew(-2deg) scale(1.05) translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(255, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.fact-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000;
}

.fact-card p {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 1px 1px 0px #000;
}

/* BRUTAL QUOTES SECTION */
.quotes {
    text-align: center;
}

.quote-carousel {
    position: relative;
    height: 200px;
    margin: 50px 0;
}

.quote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(135deg, #000 0%, #ff0000 100%);
    padding: 40px;
    border: 3px solid #ff0000;
    color: #fff;
    transform: skew(-1deg);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 50px rgba(255, 0, 0, 0.1);
}

.quote.active {
    opacity: 1;
}

.quote p {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000;
}

.quote-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.quote-btn {
    width: 50px;
    height: 50px;
    border: 3px solid #ff0000;
    background: #000;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 0px #000;
}

.quote-btn.active,
.quote-btn:hover {
    background: #ff0000;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* SOCIAL LINKS - METAL STYLE */
.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 3px solid #ff0000;
    background: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    text-shadow: 1px 1px 0px #000;
}

.social-link:hover {
    background: #ff0000;
    color: #000;
    transform: scale(1.1) skew(-2deg);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.social-link.instagram {
    border-color: #ff0000;
}

.social-link.linkedin {
    border-color: #ff0000;
}

.social-link.fanfiction {
    border-color: #ff0000;
    background: linear-gradient(135deg, #ff6600 0%, #ff0000 100%);
}

.social-icon {
    font-size: 2rem;
}

/* APPRECIATION SECTION - AGGRESSIVE */
.appreciation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.appreciation-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #333 0%, #000 100%);
    border: 2px solid #ff0000;
    transition: all 0.3s ease;
    transform: skew(-1deg);
}

.appreciation-item:hover {
    transform: skew(-1deg) translateX(10px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    border-color: #fff;
}

.appreciation-icon {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
    filter: drop-shadow(0 0 10px #ff0000);
}

.appreciation-item p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    color: #ccc;
    text-shadow: 1px 1px 0px #000;
}

/* INSTAGRAM SECTION */
.instagram-disclaimer {
    text-align: center;
    background: linear-gradient(135deg, #ff0000 0%, #000 100%);
    padding: 40px;
    border: 3px solid #fff;
    margin-top: 40px;
    transform: skew(-1deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.instagram-disclaimer p {
    margin: 15px 0;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 1px 1px 0px #000;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instagram-disclaimer a {
    color: #ffff00;
    text-decoration: none;
    font-weight: 900;
    text-shadow: 2px 2px 0px #000;
}

.instagram-disclaimer a:hover {
    color: #fff;
    text-shadow: 0 0 10px #ffff00;
}

/* FOOTER - BRUTAL */
footer {
    text-align: center;
    padding: 60px 0;
    color: #fff;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #000 0%, #ff0000 100%);
    border-top: 5px solid #ff0000;
    text-shadow: 2px 2px 0px #000;
}

.claude-credit {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 15px;
    font-style: italic;
    color: #ffff00;
    text-shadow: 1px 1px 0px #000;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MOBILE RESPONSIVE - KEEP THE AGGRESSION */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    main {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fact-card {
        transform: skew(0deg);
    }
    
    .fact-card:hover {
        transform: skew(0deg) scale(1.05);
    }
    
    .quote p {
        font-size: 1.5rem;
    }
    
    .quote {
        transform: skew(0deg);
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 280px;
        justify-content: center;
    }
    
    .appreciation-list {
        grid-template-columns: 1fr;
    }
    
    .appreciation-item {
        flex-direction: column;
        text-align: center;
        transform: skew(0deg);
    }
    
    .instagram-disclaimer {
        transform: skew(0deg);
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .haider-emoji {
        font-size: 4rem;
    }
    
    main {
        padding: 20px 15px;
    }
    
    .fact-card {
        padding: 25px;
    }
    
    .quote-carousel {
        height: 250px;
    }
    
    .quote {
        padding: 25px;
    }
    
    .quote p {
        font-size: 1.3rem;
    }
}

/* EASTER EGG STYLES */
.konami-mode {
    animation: rainbow 1s linear infinite;
}

@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.breakdown-mode {
    animation: glitch 0.1s linear infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}