@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Courier+Prime:wght@700&family=Special+Elite&family=Righteous&family=Russo+One&family=Oleo+Script+Swash+Caps:wght@400;700&family=Road+Rage&family=Roboto&display=swap');

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

body {
    font-family: 'Courier Prime', monospace;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Distressed fixed background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url(unnamed.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    filter: grayscale(1) contrast(1.3) brightness(0.4);
}

/* Heavy grain texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.05) 2px, rgba(255,255,255,.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.03) 2px, rgba(255,255,255,.03) 4px);
    z-index: -1;
    pointer-events: none;
    opacity: 3;
}

/* Enhanced Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.95) 50%, rgba(0,0,0,0.95) 100%);
    border-bottom: 3px solid #fff;
    z-index: 1000;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.8),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(15px) saturate(1.2);
    transition: all 0.3s ease;
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255,255,255,.03) 3px, rgba(255,255,255,.03) 6px),
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
}

nav:hover {
    background: linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(30,30,30,0.98) 50%, rgba(10,10,10,0.98) 100%);
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.9),
        inset 0 1px 0 rgba(255,255,255,0.2),
        inset 0 -1px 0 rgba(255,255,255,0.08);
}

.logo {
    font-family: 'Special Elite', cursive;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 
        4px 4px 0 #000,
        -1px -1px 0 #666,
        0 0 20px rgba(255,255,255,0.3);
    transform: rotate(-2deg);
    filter: blur(0.2px);
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: rotate(0deg) scale(1.05);
    text-shadow: 
        5px 5px 0 #000,
        -1px -1px 0 #666,
        0 0 30px rgba(255,255,255,0.5);
    letter-spacing: 5px;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    position: relative;
    z-index: 10;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
    padding: 12px 18px;
    border-radius: 2px;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a:hover::after {
    opacity: 1;
}

.nav-links a:hover {
    letter-spacing: 3px;
    transform: translateY(-2px);
    text-shadow: 0 5px 15px rgba(255,255,255,0.3);
    color: #f0f0f0;
}

/* Enhanced Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 140px;
    font-weight: 700;
    letter-spacing: 25px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 
        8px 8px 0 #000,
        15px 15px 0 rgba(0,0,0,0.5),
        -2px -2px 0 #666;
    margin-bottom: 20px;
    transform: skew(-6deg);
    line-height: 0.95;
    font-family: 'Road Rage', sans-serif;
}

.hero .tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 12px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 15px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.9), 3px 3px 0 #000;
    animation: fadeInUp 1.2s ease-out;
    font-weight: 700;
}

.hero .subtext {
    font-size: 18px;
    letter-spacing: 4px;
    margin-top: 50px;
    color: #aaa;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    animation: fadeInUp 1.4s ease-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Ripped sections */
.section {
    min-height: 100vh;
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content-box {
    background: rgba(0, 0, 0, 0.95);
    border: 6px solid #fff;
    padding: 70px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 
        20px 20px 0 rgba(255, 255, 255, 0.1),
        40px 40px 60px rgba(0, 0, 0, 0.9);
    position: relative;
    transform: rotate(-2deg);
}

.content-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.05) 10px,
        rgba(255,255,255,0.05) 20px
    );
    z-index: -1;
}

.content-box::after {
    content: '///';
    position: absolute;
    font-size: 300px;
    color: rgba(255, 255, 255, 0.02);
    font-family: 'Special Elite', cursive;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(-15deg);
    font-weight: 900;
    z-index: 0;
}

.section h2 {
    font-family: 'Special Elite', cursive;
    font-size: 60px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
    text-shadow: 
        6px 6px 0 #000, 
        -2px -2px 0 #444,
        0 10px 30px rgba(0,0,0,0.7);
    transform: skew(-5deg);
    position: relative;
    z-index: 1;
    filter: blur(0.4px);
}

/* About content - raw */
.about-content {
    font-size: 22px;
    line-height: 2;
    color: #ddd;
    font-family: 'Courier Prime', monospace;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.highlight {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    background: #000;
    padding: 2px 8px;
    border: 2px solid #fff;
}

/* Chaotic event cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 50px;
    width: 100%;
    position: relative;
    z-index: 1;
    justify-items: center;
    padding: 20px;
}

.event-card {
    background: rgba(0, 0, 0, 0.9);
    border: 5px solid #fff;
    padding: 0;
    transition: all 0.3s;
    position: relative;
    transform: rotate(2deg);
    box-shadow: 10px 10px 0 rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: auto;
    max-width: 400px;
    margin: 15px;
}

.event-poster {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.3) contrast(1.2) brightness(0.9);
    transition: all 0.3s ease;
    border-bottom: 3px solid #fff;
    background: #000;
    display: block;
}

.poster-link {
    display: block;
    cursor: pointer;
    position: relative;
    width: 100%;
}

.event-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 280px;
}

.event-image {
    width: 100%;
    height: 200px;
    background: #1a1a1a;
    margin: -35px -35px 25px -35px;
    object-fit: cover;
    object-position: center;
    filter: posterize(8);
}

.event-card::before {
    content: 'X';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Special Elite', cursive;
    font-weight: 900;
    z-index: 1;
}

.event-card:nth-child(even) {
    transform: rotate(-2deg);
}

.event-card:nth-child(3n) {
    transform: rotate(1deg);
}

.event-card:hover {
    transform: rotate(0deg) scale(1.03);
    border-color: #ccc;
    box-shadow: 15px 15px 0 rgba(255,255,255,0.15), 0 0 40px rgba(255,255,255,0.2);
}

.event-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 3px;
    background: #fff;
    padding: 8px 12px;
    border: 2px solid #000;
    display: inline-block;
    transform: skew(-5deg);
}

.event-title {
    font-family: 'Special Elite', cursive;
    font-size: 36px;
    font-weight: 900;
    margin: 20px 0;
    color: #fff;
    text-shadow: 4px 4px 0 #000;
    letter-spacing: 2px;
    line-height: 1.1;
    filter: blur(0.3px);
}

.event-details {
    font-size: 18px;
    line-height: 1.9;
    font-family: 'Courier Prime', monospace;
    color: #ccc;
    font-weight: 700;
}

/* Contact section */
.contact-info {
    font-family: 'Courier Prime', monospace;
    font-size: 20px;
    line-height: 2;
    text-align: center;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.contact-info p {
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #fff;
    padding-bottom: 2px;
}

.contact-info a:hover {
    background: #fff;
    color: #000;
    padding: 5px 10px;
}

.cta {
    margin-top: 30px;
    font-size: 24px;
    color: #fff;
    font-family: 'Special Elite', cursive;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 4px solid #fff;
    padding: 20px;
    background: #000;
    transform: rotate(-1deg);
    line-height: 1.4;
    filter: blur(0.3px);
}

/* Tape effect */
.tape {
    position: absolute;
    width: 150px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tape-1 {
    top: -25px;
    left: 100px;
    transform: rotate(-5deg);
}

.tape-2 {
    top: -25px;
    right: 100px;
    transform: rotate(8deg);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #000;
    border-left: 2px solid #333;
}

::-webkit-scrollbar-thumb {
    background: #fff;
    border: 3px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        margin-top: 80px;
    }

    .hero h1 {
        font-size: 70px;
        letter-spacing: 8px;
    }

    .hero .tagline {
        font-size: 28px;
        letter-spacing: 6px;
    }

    .section h2 {
        font-size: 50px;
    }

    .content-box {
        padding: 40px 25px;
    }

    nav {
        padding: 20px 25px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 25px;
        font-size: 16px;
    }

    .nav-links a {
        font-size: 16px;
        padding: 10px 15px;
    }

    .logo {
        font-size: 26px;
        letter-spacing: 3px;
    }

    .event-title {
        font-size: 28px;
    }

    .cta {
        font-size: 24px;
        padding: 20px;
    }
}