/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 80px; /* Add space for bottom nav */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 95%, rgba(0, 255, 65, 0.1) 100%),
        linear-gradient(transparent 95%, rgba(0, 255, 65, 0.1) 100%),
        repeating-linear-gradient(90deg, transparent, transparent 50px, 
            rgba(0, 255, 65, 0.03) 50px, rgba(0, 255, 65, 0.03) 51px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, 
            rgba(0, 255, 65, 0.03) 50px, rgba(0, 255, 65, 0.03) 51px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: -1;
}

/* Circuit decoration for sections - REMOVED */

/* Enhanced section titles with circuit accents */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
}

.section-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.title-decoration {
    width: 250px;
    height: 250px;
    opacity: 0.8;
    margin: 0;
    padding: 0;
    transition: none !important;
    animation: none !important;
}

.title-decoration.left {
    transform: scaleX(-1);
    margin-right: -80px;
}

.title-decoration.right {
    transform: none;
    margin-left: -80px;
}

/* Events section specific decoration sizing */
.events-section .title-decoration {
    width: 180px;
    height: 180px;
}

.events-section .title-decoration.left {
    margin-right: -50px;
}

.events-section .title-decoration.right {
    margin-left: -50px;
}

.section-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Remove old title decorations */
.title-underline {
    display: none;
}

.title-underline::before,
.title-underline::after {
    display: none;
}

/* Circuit corners for containers - REMOVED BORDER-RADIUS */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.container::before,
.container::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #00ff41;
    opacity: 0.3;
}

.container::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.container::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== HEADER ===== */
.main-header {
    display: none;
}

.main-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px #00ff41) drop-shadow(0 0 40px #00ff41);
    animation: glowPulse 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.8));
}

.dj-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff41;
    text-shadow: 0 0 20px #00ff41, 0 0 40px #00ff41;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 20px #00ff41) drop-shadow(0 0 40px #00ff41); }
    50% { filter: drop-shadow(0 0 30px #00ff41) drop-shadow(0 0 60px #00ff41); }
}

.header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 10px,
            rgba(0, 255, 65, 0.05) 10px,
            rgba(0, 255, 65, 0.05) 11px
        );
    pointer-events: none;
}

/* ===== SECTIONS ===== */
section {
    position: relative;
    padding: 100px 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    padding-bottom: 120px;
    overflow: hidden;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    padding: 220px 0 30px;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(0, 255, 65, 0.02) 20px,
            rgba(0, 255, 65, 0.02) 21px
        );
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-section .container {
    position: relative;
    padding-top: 40px;
}

.hero-logo {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.mobile-hero-logo {
    display: none;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
    max-width: 600px;
    padding-top: 40px; /* This will align with the profile image */
    font-size: 1.1rem;
    line-height: 1.8;
}

.profile-container {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    margin-top: -40px; /* Move profile image up on desktop */
}

.intro-text {
    font-size: 1.3rem;
    color: #00ff41;
    margin-bottom: 25px;
    font-weight: bold;
}

.highlight {
    color: #00ff41;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.profile-image {
    width: 520px;
    height: auto;
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
    padding: 20px;
    margin: 20px;
}

.profile-image:hover {
    transform: scale(1.02);
}

.profile-photo {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.3));
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
    position: relative;
    z-index: 1;
}

.profile-image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #00ff41;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    transition: all 0.3s ease;
}

.profile-image-placeholder:hover {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 255, 65, 0.1) 100%);
    pointer-events: none;
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
}

.profile-image:hover .image-overlay {
    opacity: 1;
}

/* Tribal corner decorations */
.tribal-corner {
    position: absolute;
    z-index: 10;
    transition: all 0.4s ease;
    pointer-events: none;
}

.tribal-top-right {
    top: 10px;
    right: 10px;
}

.tribal-bottom-left {
    bottom: 10px;
    left: 10px;
    transform: scaleX(-1) scaleY(-1);
}

.tribal-corner svg {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.8)) drop-shadow(0 0 30px rgba(0, 255, 65, 0.4));
}

.tribal-corner svg path {
    opacity: 0.9;
}

.profile-image:hover .tribal-corner {
    transform: scale(1.2);
    filter: brightness(1.3);
}

.profile-image:hover .tribal-bottom-left {
    transform: scaleX(-1) scaleY(-1) scale(1.2);
}

.profile-image:hover .tribal-corner svg {
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 1)) drop-shadow(0 0 40px rgba(0, 255, 65, 0.6));
}

/* ===== TECHNICAL RIDER ===== */
.technical-rider {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.rider-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.rider-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.rider-image {
    flex: 1.5;
    position: relative;
}

.rider-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.2));
    transition: all 0.3s ease;
}

.rider-photo:hover {
    filter: drop-shadow(0 0 25px rgba(0, 255, 65, 0.4));
    transform: scale(1.02);
}

.rider-specs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(0, 255, 65, 0.02));
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(0, 255, 65, 0.4);
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.08), rgba(0, 255, 65, 0.04));
}

.spec-label {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.rider-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.15;
}

.rider-decorations svg {
    position: absolute;
    filter: drop-shadow(0 0 10px #00ff41);
}

.rider-decor-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.rider-decor-2 {
    bottom: 15%;
    right: 10%;
    transform: rotate(20deg);
}

.rider-decor-3 {
    top: 20%;
    right: 25%;
    transform: rotate(5deg);
}

/* ===== MEDIA SECTION ===== */
.media-section {
    position: relative;
    padding: 0 0 40px;
    background-color: #0a0a0a;
    border-top: 1.5px solid rgba(0,255,65,0.13);
    border-bottom: 1.5px solid rgba(0,255,65,0.13);
    box-shadow: 0 0 30px 0 rgba(0,255,65,0.08);
    margin-top: 0;
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 255, 65, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 255, 65, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(0, 255, 65, 0.03) 0%, transparent 40%),
        linear-gradient(45deg, 
            transparent 45%, 
            rgba(0, 255, 65, 0.03) 45%,
            rgba(0, 255, 65, 0.03) 55%,
            transparent 55%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 25px 25px;
    pointer-events: none;
}

.media-subsection {
    margin-bottom: 50px;
}

.media-subsection-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin: 40px 0 30px 0;
    padding: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ===== SOUNDCLOUD EMBED STYLING ===== */
.soundcloud-embed {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.soundcloud-embed:hover {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    transform: translateY(-2px);
}

.soundcloud-embed iframe {
    background: #000;
    border: 1px solid #333;
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.soundcloud-link-wrapper {
    margin-top: 10px;
    text-align: center;
}

.soundcloud-attribution {
    color: #00ff41;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.soundcloud-attribution:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.audio-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.media-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #333;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.media-link:hover {
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transform: translateY(-5px);
}

.link-icon {
    font-size: 1.5rem;
    color: #00ff41;
}

.link-text {
    font-weight: bold;
    font-size: 1rem;
}

.link-arrow {
    font-size: 1.2rem;
    color: #00ff41;
    transition: transform 0.3s ease;
}

.media-link:hover .link-arrow {
    transform: translateX(5px);
}

.video-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.video-placeholder {
    width: 400px;
    height: 225px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #00ff41;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    transform: scale(1.02);
}

.play-button {
    width: 60px;
    height: 60px;
    background: #00ff41;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

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

.video-text {
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 60px auto 0;
    max-width: 1000px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.photo-item::before,
.photo-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #00ff41;
    border-left: 2px solid #00ff41;
    opacity: 0.3;
}

.photo-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #00ff41;
    border-right: 2px solid #00ff41;
    opacity: 0.3;
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-photo:hover {
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transform: scale(1.05);
}

.photo-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-placeholder:hover {
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transform: translateY(-5px);
}

/* ===== EVENTS SECTION ===== */
.events-section {
    position: relative;
    padding: 40px 0;
    background-color: #0a0a0a;
    border-top: 1.5px solid rgba(0,255,65,0.13);
    border-bottom: 1.5px solid rgba(0,255,65,0.13);
    box-shadow: 0 0 30px 0 rgba(0,255,65,0.08);
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 25px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #333;
    transition: all 0.3s ease;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.event-item::before,
.event-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #00ff41;
    border-left: 2px solid #00ff41;
    opacity: 0.3;
}

.event-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #00ff41;
    border-right: 2px solid #00ff41;
    opacity: 0.3;
}

.event-item:hover {
    border-color: #00ff41;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.3);
    transform: translateX(10px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00ff41, #00cc33);
    color: #000;
    padding: 15px;
    text-align: center;
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.date-day {
    display: block;
    font-size: 1.8rem;
    font-family: 'Orbitron', monospace;
}

.date-month {
    display: block;
    font-size: 0.9rem;
}

.event-details h4 {
    color: #00ff41;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.event-location,
.event-time {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.event-status {
    padding: 8px 15px;
    background: linear-gradient(135deg, #00ff41, #00cc33);
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.event-status:contains("SPECIAL") {
    background: #ff4100;
    color: #fff;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    padding: 40px 0;
    background-color: #0a0a0a;
    border-top: 1.5px solid rgba(0,255,65,0.13);
    box-shadow: 0 0 30px 0 rgba(0,255,65,0.08);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 65, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 65, 0.02) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-container {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 40px;
    border: 2px solid #333;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #00ff41;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #0a0a0a;
    border: 2px solid #333;
    color: #ffffff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00ff41, #00cc33);
    color: #000;
    border: none;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00cc33, #00ff41);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-title {
    font-size: 1.5rem;
    color: #00ff41;
    margin-bottom: 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #333;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.social-link:hover {
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transform: translateX(10px);
}

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

.social-text {
    font-weight: bold;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #0a0a0a;
    border-top: 2px solid #00ff41;
    padding: 30px 0;
    display: none;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-tribal {
    width: 20px;
    height: 20px;
    background: #00ff41;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 6s linear infinite;
}

.footer-tribal-right {
    transform: rotate(180deg);
    animation: rotateReverse 6s linear infinite;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ===== BACKGROUND ANIMATION ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ff41;
    animation: float 8s linear infinite;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 10%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes float {
    0% {
        top: 100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: -10%;
        opacity: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Mobile-specific container adjustments */
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    .bottom-nav .container {
        padding: 0;
        overflow: visible;
    }

    /* About section mobile layout */
    .about-section {
        padding: 20px 0 40px;
    }

    .about-section .container {
        gap: 40px;
    }

    /* Mobile logo */
    .mobile-hero-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto 40px;
    }

    .mobile-hero-logo .main-logo {
        width: 240px;
        max-width: 80%;
        height: auto;
        margin-bottom: 30px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 20px;
    }

    .about-text {
        padding-top: 0;
        text-align: center;
        max-width: 100%;
        order: 2;
    }

    .profile-container {
        width: 100%;
        max-width: 600px;
        margin: 0 auto; /* Reset margin on mobile */
        aspect-ratio: 1/1;
        overflow: hidden;
    }

    .profile-image {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        clip-path: none;
        position: relative;
    }

    .profile-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        border-radius: 12px;
        clip-path: none;
    }

    .hero-logo {
        display: none;
    }

    /* Mobile text content */
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: left;
        padding: 0 10px;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.6;
        letter-spacing: 0.02em;
    }

    .intro-text {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    /* Mobile section headers */
    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 90%;
        margin: 15px auto 0;
    }

    /* Mobile technical rider */
    .technical-rider {
        margin-top: 40px;
        padding: 20px;
    }

    .rider-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .rider-content {
        flex-direction: column;
        gap: 25px;
    }

    .rider-specs {
        padding: 15px;
    }

    .spec-item {
        margin-bottom: 15px;
        font-size: 0.9rem;
    }

    /* Mobile media section */
    .media-section {
        padding: 40px 0;
    }

    .soundcloud-embed {
        margin: 20px 0;
    }

    .video-gallery {
        gap: 20px;
        margin: 20px 0;
    }

    .video-item {
        border-radius: 8px;
        overflow: hidden;
    }

    .photo-gallery {
        gap: 15px;
        margin: 20px 0;
    }

    .gallery-photo {
        border-radius: 8px;
    }

    /* Mobile events section */
    .events-section {
        padding: 40px 0;
    }

    .event-item {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .event-title {
        font-size: 1.1rem;
    }

    .event-location, .event-time {
        font-size: 0.9rem;
    }

    /* Enhanced Mobile Contact Section */
    .contact-section {
        padding: 40px 0;
        background: rgba(0, 0, 0, 0.6);
    }

    .contact-section .container {
        padding: 0 20px;
    }

    .contact-section .section-header {
        margin-bottom: 35px;
    }

    .contact-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .contact-section .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 280px;
        margin: 0 auto;
        opacity: 0.9;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .contact-form-container {
        background: rgba(0, 255, 65, 0.05);
        padding: 25px 20px;
        border-radius: 12px;
        border: 1px solid rgba(0, 255, 65, 0.1);
        box-shadow: 0 4px 20px rgba(0, 255, 65, 0.05);
        clip-path: none;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        margin: 0;
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 8px;
        color: #00ff41;
        letter-spacing: 0.1em;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(0, 255, 65, 0.2);
        padding: 12px 15px;
        border-radius: 8px;
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: rgba(0, 255, 65, 0.5);
        box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
        outline: none;
    }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .submit-btn {
        background: rgba(0, 255, 65, 0.2);
        color: #00ff41;
        border: 1px solid rgba(0, 255, 65, 0.3);
        padding: 14px 28px;
        font-size: 0.9rem;
        letter-spacing: 0.1em;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-weight: bold;
        margin-top: 10px;
        clip-path: none;
    }

    .submit-btn:hover {
        background: rgba(0, 255, 65, 0.3);
        border-color: rgba(0, 255, 65, 0.4);
    }

    .social-links {
        margin-top: 0;
        padding: 25px 20px;
        background: rgba(0, 255, 65, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(0, 255, 65, 0.1);
    }

    .social-title {
        font-size: 1.2rem;
        margin-bottom: 25px;
        text-align: center;
        color: #00ff41;
        letter-spacing: 0.15em;
    }

    .social-icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-content: center;
    }

    .social-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 15px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(0, 255, 65, 0.2);
        border-radius: 8px;
        color: #fff;
        text-decoration: none;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: rgba(0, 255, 65, 0.1);
        border-color: rgba(0, 255, 65, 0.3);
    }

    /* Mobile footer */
    .main-footer {
        padding: 20px 0;
    }

    .copyright {
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }

    /* Mobile navigation */
    .bottom-nav {
        padding: 10px 15px;
        width: 95%;
        max-width: 95%;
    }

    .bottom-nav ul {
        gap: 15px;
    }

    .bottom-nav a {
        font-size: 0.85rem;
        padding: 8px 10px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 180px;
    }
    
    .dj-name {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
    
    .title-decoration {
        width: 120px;
        height: 120px;
    }
    
    .title-decoration.left {
        transform: scaleX(-1);
        margin-right: -40px;
    }
    
    .title-decoration.right {
        transform: none;
        margin-left: -40px;
    }

    .media-subsection-title {
        font-size: 1.1rem;
        margin: 25px 0 15px 0;
    }

    .events-section .title-decoration {
        width: 100px;
        height: 100px;
    }

    .events-section .title-decoration.left {
        margin-right: -25px;
    }

    .events-section .title-decoration.right {
        margin-left: -25px;
    }

    .about-text {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .profile-image {
        width: 250px;
    }

    .profile-image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .rider-title {
        font-size: 1.3rem;
    }
    
    .spec-item {
        padding: 12px;
    }
    
    .spec-value {
        font-size: 1rem;
    }
    
    .soundcloud-embed {
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .soundcloud-embed iframe {
        height: 200px;
    }
    
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px auto;
        max-width: 400px;
    }
    
    .video-item {
        aspect-ratio: 9/12; /* Much shorter on mobile */
    }
    
    .video-placeholder {
        width: 250px;
        height: 141px;
    }
    
    .event-item {
        padding: 20px 15px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .gallery-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .back-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .bottom-nav {
        width: 100%;
        bottom: 0;
        left: 0;
        transform: none;
        padding: 8px 10px;
        clip-path: none;
        border-left: none;
        border-right: none;
    }

    .bottom-nav li {
        margin: 0 4px;
    }

    .bottom-nav a {
        font-size: 0.75rem;
        padding: 6px 8px;
        letter-spacing: 0.5px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particle {
        display: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .bg-animation,
    .particle,
    .submit-btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section-title,
    .dj-name,
    .highlight {
        color: black !important;
        text-shadow: none !important;
    }
}

/* ===== VIDEO GALLERY STYLING ===== */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px auto;
    max-width: 900px;
}

.video-item {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 9/16; /* Optimized for vertical videos */
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
}

.video-item::before,
.video-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #00ff41;
    border-left: 2px solid #00ff41;
    opacity: 0.3;
}

.video-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #00ff41;
    border-right: 2px solid #00ff41;
    opacity: 0.3;
}

.video-item:hover {
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transform: translateY(-5px);
}

.performance-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    transition: transform 0.3s ease;
}

.video-item:hover .performance-video {
    transform: scale(1.02);
}

.performance-video {
    cursor: pointer;
}

/* ===== VIEW ALL GALLERY BUTTON ===== */
.view-all-gallery {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00ff41, #00cc33);
    color: #000;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #00cc33, #00ff41);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.5);
    transform: translateY(-3px);
    color: #000;
}

/* ===== FULL GALLERY SECTION ===== */
.full-gallery-section {
    background: 
        linear-gradient(135deg, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(0, 255, 65, 0.02) 40px,
            rgba(0, 255, 65, 0.02) 41px
        );
    padding: 100px 0;
}

.gallery-categories {
    margin-bottom: 60px;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 2px solid #333;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #00ff41;
    color: #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #00ff41, #00cc33);
    color: #000;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid #333;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item::before,
.gallery-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #00ff41;
    border-left: 2px solid #00ff41;
    opacity: 0.3;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #00ff41;
    border-right: 2px solid #00ff41;
    opacity: 0.3;
}

.gallery-item:hover {
    border-color: #00ff41;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    transform: translateY(-8px) scale(1.02);
}

.full-gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover .full-gallery-photo {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h4 {
    color: #00ff41;
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.gallery-item-overlay p {
    color: #cccccc;
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== GALLERY FILTER ANIMATIONS ===== */
.gallery-item.filtered {
    opacity: 0.3;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item:not(.filtered) {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

/* ===== GALLERY PAGE ===== */
.gallery-page-section {
    background: 
        linear-gradient(135deg, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(0, 255, 65, 0.02) 40px,
            rgba(0, 255, 65, 0.02) 41px
        );
    padding: 40px 0;
    min-height: 100vh;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-page-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid #333;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-page-item::before,
.gallery-page-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #00ff41;
    border-left: 2px solid #00ff41;
    opacity: 0.3;
}

.gallery-page-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #00ff41;
    border-right: 2px solid #00ff41;
    opacity: 0.3;
}

.gallery-page-item:hover {
    border-color: #00ff41;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    transform: translateY(-8px) scale(1.02);
}

.gallery-page-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-page-item:hover .gallery-page-photo {
    transform: scale(1.1);
}

.back-to-home {
    text-align: center;
    margin-top: 60px;
}

.back-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #333, #555);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
    transition: all 0.3s ease;
    border: 2px solid #555;
}

.back-btn:hover {
    background: linear-gradient(135deg, #00ff41, #00cc33);
    color: #000;
    border-color: #00ff41;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.5);
    transform: translateY(-3px);
}

/* === CYBER TRIBAL CIRCUIT LINES === */
.section-cyber-tribal {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.section-cyber-tribal svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Animated glowing nodes */
.cyber-node {
    fill: #00ff41;
    filter: drop-shadow(0 0 8px #00ff41) drop-shadow(0 0 16px #00ff41);
    opacity: 0.7;
    animation: cyberNodePulse 2s infinite alternate;
}

@keyframes cyberNodePulse {
    from { opacity: 0.7; }
    to { opacity: 1; filter: drop-shadow(0 0 16px #00ff41) drop-shadow(0 0 32px #00ff41); }
}

/* Extra tribal lines for section edges - REMOVED */

/* ===== HERO LOGO ===== */
.hero-logo {
    position: absolute;
    top: -120px;
    left: 48%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== PRESS KIT SECTION ===== */
.press-kit-section {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    background: linear-gradient(180deg, rgba(0, 255, 65, 0.05) 0%, transparent 20%);
}

.press-kit-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.press-kit-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.press-kit-btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0a0a;
    background: #00ff41;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #00ff41;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
}

.press-kit-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.6);
    transform: scale(1.05) translateY(-2px);
}

.press-kit-section.audio-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.press-kit-section .media-link {
    width: auto;
    min-width: 300px;
    padding: 25px 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.9));
    border: 2px solid #00ff41;
    transform: scale(1.1);
    margin: 20px 0;
}

.press-kit-section .media-link:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.4);
}

.press-kit-section .link-icon {
    font-size: 2rem;
}

.press-kit-section .link-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.press-kit-section .link-arrow {
    font-size: 1.6rem;
}

.press-kit-contents {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-family: 'Share Tech Mono', monospace;
    text-align: center;
    margin-top: 0;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .press-kit-section .media-link {
        min-width: 280px;
        padding: 20px 30px;
    }

    .press-kit-section .link-text {
        font-size: 1.2rem;
    }

    .press-kit-contents {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .press-kit-section .media-link {
        min-width: 260px;
        padding: 18px 25px;
        transform: scale(1);
    }

    .press-kit-section .media-link:hover {
        transform: scale(1.05) translateY(-3px);
    }

    .press-kit-section .link-text {
        font-size: 1.1rem;
    }

    .press-kit-contents {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* ===== BOTTOM NAVIGATION ===== */
.bottom-nav {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid #00ff41;
    z-index: 1000;
    padding: 15px 25px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.25);
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav li {
    margin: 0 15px;
}

.desktop-nav a {
    color: #00ff41;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.7);
    position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #ffffff;
    text-shadow: 0 0 15px #00ff41, 0 0 25px #00ff41;
    transform: translateY(-2px);
}

.desktop-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #00ff41;
    transition: width 0.3s ease;
}

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

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    body {
        padding-bottom: 75px;
        overflow-x: hidden;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: none;
        margin: 0;
        height: 65px;
        background: rgba(0, 0, 0, 0.85);
        border: none;
        border-top: 2px solid rgba(0, 255, 65, 0.3);
        box-shadow: 0 -5px 20px rgba(0, 255, 65, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 8px 0;
        clip-path: polygon(0 15%, 2% 0, 98% 0, 100% 15%, 100% 100%, 0 100%);
        box-sizing: border-box;
        transform: none;
    }

    .bottom-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(0, 255, 65, 0.2) 15%, 
            rgba(0, 255, 65, 0.5) 50%,
            rgba(0, 255, 65, 0.2) 85%, 
            transparent 100%);
    }

    .mobile-nav li {
        flex: 1;
        margin: 0;
        text-align: center;
        position: relative;
    }

    .mobile-nav li::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 70%;
        background: linear-gradient(to bottom, 
            transparent, 
            rgba(0, 255, 65, 0.2), 
            transparent);
    }

    .mobile-nav li:last-child::after {
        display: none;
    }

    .mobile-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: rgba(255, 255, 255, 0.7);
        font-family: 'Share Tech Mono', monospace;
        font-size: 0.7rem;
        padding: 5px;
        letter-spacing: 1px;
        text-decoration: none;
        text-shadow: none;
        transform: none;
        transition: all 0.3s ease;
    }

    .mobile-nav .nav-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 4px;
        opacity: 0.7;
        transition: all 0.3s ease;
        filter: drop-shadow(0 0 2px rgba(0, 255, 65, 0.3));
    }

    .mobile-nav a span {
        display: block;
        font-size: 0.65rem;
        letter-spacing: 1px;
        margin-top: 2px;
        text-transform: uppercase;
        text-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        color: #00ff41;
    }

    .mobile-nav a:hover .nav-icon,
    .mobile-nav a.active .nav-icon {
        opacity: 1;
        transform: scale(1.1);
        filter: drop-shadow(0 0 3px rgba(0, 255, 65, 0.6));
    }

    .mobile-nav a::before {
        content: '';
        position: absolute;
        top: -4px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 60%;
        height: 2px;
        background: #00ff41;
        box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
        transition: transform 0.3s ease;
    }

    .mobile-nav a:hover::before,
    .mobile-nav a.active::before {
        transform: translateX(-50%) scaleX(1);
    }

    .bottom-nav::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to bottom, 
            rgba(0, 255, 65, 0.1),
            transparent);
    }
}

/* Add space between gallery and view all button */
.media-section .audio-links {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.media-section .audio-links .media-link {
    margin: 20px 0;
    transform: scale(1);
    transition: all 0.3s ease;
}

.media-section .audio-links .media-link:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
}

/* Add specific styles for media section */
.media-section .section-header {
    margin-bottom: 20px;
}

/* Mobile circuit line adjustments */
@media screen and (max-width: 768px) {
    .about-section .section-cyber-tribal svg,
    .media-section .section-cyber-tribal svg {
        viewBox: 0 0 1200 600;
        height: 600px;
    }

    .about-section .section-cyber-tribal polyline,
    .media-section .section-cyber-tribal polyline {
        points: 0,40 100,40 200,160 400,160 500,80 700,80 800,240 1000,240 1200,120;
        stroke-width: 3;
    }

    .about-section .section-cyber-tribal .cyber-node,
    .media-section .section-cyber-tribal .cyber-node {
        r: 6;
    }

    .about-section .section-cyber-tribal .cyber-node:nth-child(2),
    .media-section .section-cyber-tribal .cyber-node:nth-child(2) {
        cy: 40;
    }

    .about-section .section-cyber-tribal .cyber-node:nth-child(3),
    .media-section .section-cyber-tribal .cyber-node:nth-child(3) {
        cy: 80;
    }

    .about-section .section-cyber-tribal .cyber-node:nth-child(4),
    .media-section .section-cyber-tribal .cyber-node:nth-child(4) {
        cy: 240;
    }
}