/* BIG APPLE HOCKEY - ICE RINK STYLES */

:root {
    --red-primary: #ED1C24;
    --red-dark: #C41E24;
    --red-glow: rgba(237, 28, 36, 0.4);
    --ice-light: #E8F4F8;
    --ice-medium: #B8D4E3;
    --ice-blue: #7EB5D6;
    --ice-deep: #4A90B8;
    --ice-dark: #1A3A4A;
    --ice-night: #0D1F2D;
    --white: #FFFFFF;
    --gray-200: #E5EAED;
    --gray-300: #C4CDD4;
    --gray-600: #5A6872;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --youtube-red: #FF0000;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* HOCKEY STICK SCROLLBAR */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(90deg, #3D2817 0%, #5C3D2E 20%, #8B6914 50%, #5C3D2E 80%, #3D2817 100%);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: radial-gradient(circle, #2d2d2d, #1a1a1a);
    border-radius: 50%;
    border: 2px solid #0d0d0d;
    min-height: 60px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #1a1a1a #5C3D2E;
}

/* BASE */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--ice-night) 0%, var(--ice-dark) 50%, var(--ice-night) 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ICE PARTICLES */
.ice-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ice-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(13, 31, 45, 0.95);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
}

.logo-circle {
    width: 50px;
    height: 50px;
}

.logo-circle.small {
    width: 35px;
    height: 35px;
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px var(--red-glow));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(237, 28, 36, 0.3));
    transition: var(--transition-normal);
}

.logo-img:hover {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px rgba(237, 28, 36, 0.5));
    transform: scale(1.05);
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--gray-200);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 1.5rem;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4) saturate(1.2);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.png') center center / cover no-repeat;
    z-index: 0;
    filter: brightness(0.6) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(126, 181, 214, 0.15) 0%, transparent 50%), radial-gradient(ellipse at center bottom, rgba(237, 28, 36, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.ice-texture {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}



.hero-title {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    max-width: min(400px, 80vw);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(237, 28, 36, 0.3));
    animation: hero-logo-glow 3s ease-in-out infinite alternate;
}

@keyframes hero-logo-glow {
    0% {
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(237, 28, 36, 0.3));
    }

    100% {
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 60px rgba(237, 28, 36, 0.5));
    }
}

.title-main {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--white) 0%, var(--ice-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.title-accent {
    display: block;
    font-size: clamp(2rem, 7vw, 4rem);
    letter-spacing: 15px;
    color: var(--red-primary);
    -webkit-text-fill-color: var(--red-primary);
    text-shadow: 0 0 40px var(--red-glow);
    margin-top: -10px;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--ice-medium);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--red-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--ice-blue);
}

.btn-outline:hover {
    background: var(--ice-blue);
    color: var(--ice-night);
}

.btn-youtube {
    background: var(--youtube-red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}

.youtube-icon {
    width: 24px;
    height: 24px;
}

/* STATS */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--ice-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--ice-blue), transparent);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--ice-medium);
    font-size: 0.8rem;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--ice-medium);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--ice-medium);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

/* ANIMATIONS */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s ease forwards;
}

.animate-in:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-in:nth-child(3) {
    animation-delay: 0.4s;
}

.animate-in:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTIONS */
section {
    position: relative;
    padding: 5rem 0;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(237, 28, 36, 0.15);
    color: var(--red-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--white) 0%, var(--ice-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GLASS CARD */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

/* ABOUT */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(74, 144, 184, 0.05) 50%, transparent 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    padding: 3rem;
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-card p {
    color: var(--gray-300);
    line-height: 1.7;
}

/* HIGHLIGHTS */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.highlight-card {
    overflow: hidden;
    cursor: pointer;
}

.card-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ice-gradient {
    background: linear-gradient(135deg, var(--ice-deep) 0%, var(--ice-dark) 100%);
}

.ice-gradient-2 {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--ice-dark) 100%);
}

.ice-gradient-3 {
    background: linear-gradient(135deg, var(--ice-blue) 0%, var(--ice-deep) 100%);
}

.play-overlay {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.highlight-card:hover .play-overlay {
    background: var(--red-primary);
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(237, 28, 36, 0.2);
    color: var(--red-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.highlights-cta {
    text-align: center;
    margin-top: 3rem;
}

/* VIDEOS */
.videos {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 0, 0.03) 50%, transparent 100%);
}

.video-embed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.video-embed-card {
    overflow: hidden;
}

.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px 16px 0 0;
}

.video-embed-info {
    padding: 1.25rem;
}

.video-embed-info h4 {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--white);
}

.video-featured {
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.video-card {
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail {
    height: 160px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: var(--youtube-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.video-card:hover .play-btn {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 0.75rem;
    border-radius: 4px;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.youtube-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CONNECT */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-card {
    display: block;
    padding: 3rem;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition-normal);
}

.social-card.instagram::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card.youtube::before {
    background: linear-gradient(45deg, #ff0000, #cc0000);
}

.social-card:hover::before {
    opacity: 0.15;
}

.social-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 48px;
    height: 48px;
    transition: var(--transition-normal);
}

.social-card:hover .social-icon svg {
    transform: scale(1.1);
}

.social-card.instagram:hover .social-icon svg {
    fill: #E1306C;
}

.social-card.youtube:hover .social-icon svg {
    fill: var(--youtube-red);
}

.social-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.social-card p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.social-action {
    color: var(--ice-blue);
    font-weight: 600;
    transition: var(--transition-fast);
}

.social-card:hover .social-action {
    color: var(--white);
}

/* NEWSLETTER */
.newsletter {
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: var(--gray-300);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    min-width: 250px;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--ice-blue);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--gray-600);
}

/* FOOTER */
.footer {
    position: relative;
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
    overflow: hidden;
}

.footer-ice {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ice-blue), var(--white), var(--ice-blue), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(13, 31, 45, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-normal);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

::selection {
    background: var(--red-primary);
    color: var(--white);
}

:focus-visible {
    outline: 2px solid var(--ice-blue);
    outline-offset: 3px;
}