/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Warning Banner */
.warning-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc143c 0%, #ff1744 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.5);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.warning-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.warning-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.warning-text {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.warning-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.warning-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .warning-banner {
        padding: 0.75rem 1rem;
    }

    .warning-text {
        font-size: 0.85rem;
    }

    .warning-icon {
        font-size: 1.2rem;
    }

    .warning-close {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background Canvas */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    max-height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.3));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.6));
    transform: scale(1.05);
}

/* Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #dc143c 0%, #ff1744 100%);
    border-radius: 25px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
    transition: all 0.3s ease;
    animation: livePulse 2s ease-in-out infinite;
}

.live-indicator:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.9);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.live-text {
    color: #ffffff;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(220, 20, 60, 0.9);
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #dc143c;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #dc143c;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #dc143c;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Home Section */
.brand-name {
    font-size: 5rem;
    font-weight: bold;
    color: #dc143c;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.6);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    letter-spacing: 4px;
}

.tagline {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.mantra {
    font-size: 2rem;
    font-weight: bold;
    color: #dc143c;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
}

.social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: #ffffff;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-icon-img {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}

/* Slideshow */
.slideshow-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(220, 20, 60, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slideshow-image.active {
    opacity: 1;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slideshow-prev,
.slideshow-next {
    pointer-events: all;
    background: rgba(220, 20, 60, 0.7);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: rgba(220, 20, 60, 1);
    transform: scale(1.1);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #dc143c 0%, #a01028 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.7s backwards;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
}

/* About Section */
.section-title {
    font-size: 3rem;
    color: #dc143c;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Watch Section */
.watch-content {
    max-width: 900px;
    margin: 0 auto;
}

.latest-video-container {
    margin-bottom: 4rem;
}

.latest-video-title {
    font-size: 1.8rem;
    color: #dc143c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.youtube-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(220, 20, 60, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.loading-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 1.1rem;
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.platform-card:hover {
    transform: translateY(-10px);
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.05);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.platform-card svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.platform-card-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.platform-card h3 {
    font-size: 1.8rem;
    color: #dc143c;
}

.platform-card p {
    font-size: 1.1rem;
    color: #999;
}

/* Social Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.05);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.social-card svg {
    width: 60px;
    height: 60px;
}

.platform-logo {
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    display: block;
}

.social-card h3 {
    font-size: 1.5rem;
    color: #dc143c;
    margin-top: 0.5rem;
}

.social-card p {
    font-size: 1.1rem;
    color: #999;
}

/* Platform-specific hover colors */
.kick-card:hover {
    border-color: #53fc18;
}

.twitch-card:hover {
    border-color: #9146ff;
}

.youtube-card:hover {
    border-color: #ff0000;
}

.twitter-card:hover {
    border-color: #1da1f2;
}

.instagram-card:hover {
    border-color: #e4405f;
}

.facebook-card:hover {
    border-color: #1877f2;
}

/* Tip/Support Card - Make it stand out */
.tip-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(220, 20, 60, 0.05) 100%);
    border: 2px solid rgba(220, 20, 60, 0.5);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.tip-card:hover {
    border-color: #dc143c;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.25) 0%, rgba(220, 20, 60, 0.15) 100%);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
    transform: translateY(-10px) scale(1.02);
}

.tip-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc143c 0%, #ff1744 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
    position: relative;
    z-index: 1;
}

.tip-icon svg {
    width: 45px;
    height: 45px;
    fill: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.tip-card h3 {
    color: #ffffff;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.tip-card p {
    color: #dc143c;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

/* Falling Leaves */
#falling-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('weed_leaf1.ico');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0.3;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .brand-name {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 2rem;
    }

    .navbar-left {
        gap: 0.75rem;
    }

    .live-indicator {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .live-dot {
        width: 8px;
        height: 8px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        gap: 2rem;
        padding: 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid rgba(220, 20, 60, 0.5);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .platform-links,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 8rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .logo-img {
        height: 40px;
        max-height: 40px;
        max-width: 150px;
    }

    .mantra {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Setup/Specs Section */
.setup-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #aaaaaa;
    margin-bottom: 0.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.validation-date {
    text-align: center;
    font-size: 0.95rem;
    color: #dc143c;
    font-weight: 600;
    margin-bottom: 3rem;
    font-style: italic;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto 3rem;
    max-width: 1200px;
}

.spec-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc143c, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spec-card:hover {
    border-color: rgba(220, 20, 60, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon {
    background: rgba(220, 20, 60, 0.2);
    transform: scale(1.1);
}

.spec-icon svg {
    width: 40px;
    height: 40px;
    fill: #dc143c;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
}

.spec-card h3 {
    font-size: 1.2rem;
    color: #888888;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.spec-value {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.spec-detail {
    font-size: 1rem;
    color: #dc143c;
    font-weight: 500;
}

.validation-link {
    text-align: center;
    margin-top: 3rem;
}

.validation-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    color: #dc143c;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.validation-link a:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    transform: translateY(-2px);
}

.validation-link svg {
    width: 24px;
    height: 24px;
    fill: #dc143c;
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .spec-card {
        padding: 1.5rem;
    }

    .spec-icon {
        width: 60px;
        height: 60px;
    }

    .spec-icon svg {
        width: 35px;
        height: 35px;
    }

    .spec-value {
        font-size: 1.2rem;
    }

    .validation-link a {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
}

/* Squad Section */
.squad-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(220, 20, 60, 0.3);
}

.squad-title {
    font-size: 2rem;
    color: #dc143c;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.squad-photo-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    border: 3px solid rgba(220, 20, 60, 0.4);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    background: rgba(20, 20, 20, 0.5);
}

.squad-photo-container:hover {
    border-color: rgba(220, 20, 60, 0.7);
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.5);
    transform: translateY(-5px);
}

.squad-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.squad-photo-container:hover .squad-photo {
    transform: scale(1.02);
}

.squad-caption {
    text-align: center;
    font-size: 1.1rem;
    color: #aaaaaa;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .squad-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .squad-title {
        font-size: 1.6rem;
    }

    .squad-photo-container {
        border-width: 2px;
    }

    .squad-caption {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Schedule Section */
.schedule-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.schedule-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc143c, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-card:hover {
    border-color: rgba(220, 20, 60, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.schedule-card:hover::before {
    opacity: 1;
}

.schedule-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: #dc143c;
}

.schedule-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
}

.schedule-card h3 {
    font-size: 1.5rem;
    color: #dc143c;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.schedule-time {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    margin: 1rem 0;
}

.schedule-note {
    font-size: 1rem;
    color: #aaaaaa;
    font-style: italic;
}

.schedule-disclaimer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(220, 20, 60, 0.2);
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .schedule-card {
        padding: 1.5rem;
    }

    .schedule-icon {
        width: 50px;
        height: 50px;
    }

    .schedule-card h3 {
        font-size: 1.3rem;
    }

    .schedule-time {
        font-size: 1.1rem;
    }
}

/* YouTube Shorts Highlights Section */
.highlights-container {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid rgba(220, 20, 60, 0.2);
}

.highlights-title {
    font-size: 1.8rem;
    color: #dc143c;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

.short-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
}

.short-card:hover {
    border-color: rgba(220, 20, 60, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.short-thumbnail {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
}

.short-info {
    padding: 1rem;
    background: rgba(10, 10, 10, 0.9);
}

.short-title {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.short-date {
    color: #888888;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.short-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(220, 20, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.short-card:hover .short-play-icon {
    opacity: 1;
}

.short-play-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .shorts-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .highlights-title {
        font-size: 1.5rem;
    }

    .short-info {
        padding: 0.75rem;
    }

    .short-title {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }

    .short-play-icon {
        width: 50px;
        height: 50px;
    }

    .short-play-icon svg {
        width: 25px;
        height: 25px;
    }
}

/* Peripherals Section */
.peripherals-title {
    font-size: 1.8rem;
    color: #dc143c;
    margin: 4rem 0 2rem;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.peripherals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 0 auto 3rem;
    max-width: 1200px;
}

.peripheral-card {
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.peripheral-card:hover {
    border-color: rgba(220, 20, 60, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.2);
}

.peripheral-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peripheral-icon svg {
    width: 28px;
    height: 28px;
    fill: #dc143c;
}

.peripheral-card h4 {
    font-size: 0.9rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.peripheral-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.peripheral-note {
    font-size: 0.85rem;
    color: #dc143c;
    font-style: italic;
}

@media (max-width: 768px) {
    .peripherals-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .peripheral-card {
        padding: 1.25rem;
    }
}

/* FAQ Section */
.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #aaaaaa;
    margin-bottom: 3rem;
    font-style: italic;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.6rem;
    color: #dc143c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(220, 20, 60, 0.3);
    letter-spacing: 1px;
}

.faq-item {
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(220, 20, 60, 0.4);
    background: rgba(20, 20, 20, 0.8);
}

.faq-item.active {
    border-color: rgba(220, 20, 60, 0.6);
    background: rgba(20, 20, 20, 0.9);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #dc143c;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #dc143c;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

@media (max-width: 768px) {
    .faq-category-title {
        font-size: 1.4rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border-top: 2px solid rgba(220, 20, 60, 0.3);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #dc143c;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #dc143c;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.6);
    transform: translateY(-3px);
}

.footer-socials svg {
    width: 20px;
    height: 20px;
    fill: #dc143c;
}

.footer-socials img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #aaaaaa;
    margin-top: 1rem;
}

.footer-email svg {
    width: 24px;
    height: 24px;
    fill: #dc143c;
    flex-shrink: 0;
}

.footer-email a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #dc143c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    color: #888888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-email {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* GOBLIN CHAOS EFFECTS 🎃 */

/* Logo shake on hover */
.logo-img:hover {
    animation: chaosShake 0.5s ease-in-out;
}

@keyframes chaosShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10% { transform: translateX(-5px) rotate(-2deg); }
    20% { transform: translateX(5px) rotate(2deg); }
    30% { transform: translateX(-5px) rotate(-1deg); }
    40% { transform: translateX(5px) rotate(1deg); }
    50% { transform: translateX(-3px) rotate(-0.5deg); }
    60% { transform: translateX(3px) rotate(0.5deg); }
    70% { transform: translateX(-2px) rotate(-0.5deg); }
    80% { transform: translateX(2px) rotate(0.5deg); }
    90% { transform: translateX(-1px) rotate(0deg); }
}

/* Make "Goblin Focus™" shake */
.faq-answer:has(text) {
    position: relative;
}

/* Chaotic tilt on FAQ answers containing certain keywords */
.faq-item:hover .faq-answer {
    transform: rotate(0.5deg);
    transition: transform 0.2s ease;
}

/* Brand name subtle chaos */
.brand-name:hover {
    animation: subtleChaos 3s ease-in-out infinite;
}

@keyframes subtleChaos {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-0.5deg); }
    75% { transform: rotate(0.5deg); }
}

/* Tip button extra chaos */
.tip-card:hover {
    animation: chaosWobble 0.3s ease-in-out;
}

@keyframes chaosWobble {
    0%, 100% { transform: translateY(-10px) scale(1.02) rotate(0deg); }
    25% { transform: translateY(-12px) scale(1.03) rotate(-1deg); }
    75% { transform: translateY(-8px) scale(1.01) rotate(1deg); }
}

/* Social icons chaos spin */
.social-icon:active {
    animation: chaosSpin 0.5s ease-in-out;
}

@keyframes chaosSpin {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(-10px) scale(1.2) rotate(180deg); }
    100% { transform: translateY(-5px) scale(1.1) rotate(360deg); }
}

/* LIVE indicator extra pulse when visible */
.live-indicator {
    animation: livePulse 2s ease-in-out infinite, chaosGlow 3s ease-in-out infinite;
}

@keyframes chaosGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 20, 60, 1), 0 0 60px rgba(220, 20, 60, 0.8);
    }
}

/* Spec cards slight wobble on hover */
.spec-card:hover {
    animation: subtleWobble 0.3s ease-in-out;
}

@keyframes subtleWobble {
    0%, 100% { transform: translateY(-5px) rotate(0deg); }
    50% { transform: translateY(-7px) rotate(-1deg); }
}

/* Short cards chaos on hover */
.short-card:hover {
    animation: cardChaos 0.4s ease-in-out;
}

@keyframes cardChaos {
    0%, 100% { transform: translateY(-5px) rotate(0deg); }
    25% { transform: translateY(-7px) rotate(-0.5deg); }
    75% { transform: translateY(-3px) rotate(0.5deg); }
}

/* Footer social icons extra chaos */
.footer-socials a:hover {
    animation: footerChaos 0.5s ease-in-out;
}

@keyframes footerChaos {
    0%, 100% { transform: translateY(-3px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(10deg) scale(1.1); }
    50% { transform: translateY(-7px) rotate(-10deg) scale(1.15); }
    75% { transform: translateY(-5px) rotate(5deg) scale(1.1); }
}

/* CTA button chaos */
.cta-button:hover {
    animation: ctaChaos 0.6s ease-in-out;
}

@keyframes ctaChaos {
    0%, 100% { transform: scale(1.05) rotate(0deg); }
    20% { transform: scale(1.08) rotate(-2deg); }
    40% { transform: scale(1.1) rotate(2deg); }
    60% { transform: scale(1.07) rotate(-1deg); }
    80% { transform: scale(1.09) rotate(1deg); }
}

/* Platform cards subtle shake */
.platform-card:hover,
.social-card:hover {
    animation: platformShake 0.4s ease-in-out;
}

@keyframes platformShake {
    0%, 100% { transform: translateY(-10px) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(-0.5deg); }
    50% { transform: translateY(-14px) rotate(0.5deg); }
    75% { transform: translateY(-11px) rotate(-0.3deg); }
}

/* ============================================
   SIEGE ROULETTE STYLES
   ============================================ */

/* Navigation link special styling */
.siege-roulette-link {
    background: linear-gradient(135deg, #dc143c 0%, #ff1744 100%);
    padding: 8px 16px !important;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
    transition: all 0.3s ease !important;
}

.siege-roulette-link:hover {
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.9);
    transform: translateY(-3px) scale(1.05);
    animation: roulettePulse 1s ease-in-out infinite;
}

/* Featured Siege Roulette Button */
.siege-roulette-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(255, 23, 68, 0.15) 100%);
    border: 2px solid #dc143c;
    border-radius: 12px;
    padding: 20px 30px;
    margin: 30px auto;
    max-width: 500px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.siege-roulette-feature::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: roulettePulseBackground 3s ease-in-out infinite;
}

.siege-roulette-feature:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.6);
    border-color: #ff1744;
}

.roulette-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 20, 60, 0.2);
    border-radius: 50%;
    padding: 15px;
    position: relative;
    z-index: 1;
}

.roulette-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.8));
    animation: rotateSpin 6s linear infinite;
}

.siege-roulette-feature:hover .roulette-logo {
    animation: rotateSpin 1.5s linear infinite;
}

.roulette-text {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.roulette-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #dc143c;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
    letter-spacing: 2px;
}

.roulette-text p {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Animations */
@keyframes rotateSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes roulettePulse {
    0%, 100% { box-shadow: 0 0 15px rgba(220, 20, 60, 0.6); }
    50% { box-shadow: 0 0 30px rgba(220, 20, 60, 1); }
}

@keyframes roulettePulseBackground {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .siege-roulette-feature {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .roulette-icon {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
    
    .roulette-text h3 {
        font-size: 22px;
    }
    
    .roulette-text p {
        font-size: 14px;
    }
}
