/* ========================================
   NHS EAGLES HOME PAGE STYLES
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Teko:wght@700&display=swap');

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    
    /*    font-family: 'Bebas Neue', 'Teko', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;*/

    letter-spacing: 0.02em;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.EAGLES-page {
    min-height: 100vh;
    background: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #001f3f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff6b35, #ffd700);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ffd700, #ff6b35);
}

::selection {
    background: #ff6b35;
    color: white;
}

/* ========================================
   LOADING ANIMATION
   ======================================== */
.nhseagles-loading {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: linear-gradient(135deg, #001F3F 0%, #003366 50%, #001F3F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.5s ease-out 1.5s forwards;
}

.loading-content {
    text-align: center;
    padding: 3rem 4rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    min-width: 600px;
}

.loading-icon {
/*    font-size: 100px;
    color: #FF6B35;
    filter: drop-shadow(0 0 40px rgba(255,107,53,0.8));
    margin-bottom: 2rem;
    animation: rotateScale 2s infinite;*/
}

.win-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 4px;
}

@keyframes rotateScale {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.2); }
}

.loading-title {
    font-size: 4rem;
    font-weight: 900;
    font-style: italic;
    margin: 0;
    line-height: 1.2;
/*    padding: 1rem 0;*/
}

.loading-nhs {
    display: block;
    color: white;
    transform: skew(-6deg);
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
}

.loading-eagles {
    display: block;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: skew(6deg);
    filter: drop-shadow(0 0 20px rgba(255,107,53,0.5));
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.loading-dots .dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(to right, #FF6B35, #FFD700);
    border-radius: 50%;
    animation: dotPulse 1s infinite;
}

.loading-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dots .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes fadeOut {
    to { opacity: 0; pointer-events: none; }
}

/* ========================================
   HEADER
   ======================================== */
.nhseagles-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
    background: transparent;
}

.nhseagles-header.scrolled {
    background: rgba(0, 31, 63, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    position: relative;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-nhs {
    color: white;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.logo-eagles {
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.logo-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #FF6B35, transparent);
    transform: skewX(12deg);
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.menu-link {
    position: relative;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s;
}

.menu-link:hover {
    transform: scale(1.1);
}

.menu-link:hover .menu-text {
    color: #FF6B35;
}

.menu-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #FF6B35, #FFD700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.menu-link:hover .menu-underline {
    transform: scaleX(1);
}

.btn-tickets {
    position: relative;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 900;
    font-size: 0.875rem;
    font-style: italic;
    border: none;
    cursor: pointer;
    transform: skewX(6deg);
    box-shadow: 0 0 20px rgba(255,107,53,0.5);
    overflow: hidden;
    transition: all 0.3s;
}

.btn-tickets:hover {
    transform: skewX(0deg) scale(1.05);
}

.btn-tickets span {
    position: relative;
    z-index: 10;
}

.btn-shine {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.btn-tickets:hover .btn-shine {
    transform: translateX(100%);
}

.mobile-menu-btn {
    display: block;
    background: rgba(255,107,53,0.2);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    padding: 1.5rem 0;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-link {
    display: block;
    color: white;
    font-weight: 700;
    font-style: italic;
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    background: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.mobile-menu-link:hover {
    background: rgba(255,107,53,0.2);
}

.btn-tickets.mobile {
    width: 100%;
    margin-top: 0.5rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Dual layer system for smooth transitions */
.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.hero-image.active {
    opacity: 1;
    transform: scale(1);
    animation: kenBurnsZoom 8s ease-out forwards;
}

.hero-image.inactive {
    opacity: 0;
    transform: scale(1.1);
}

/* Ken Burns zoom effect during display */
@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Transition animation when changing images */
.hero-image.transitioning-out {
    opacity: 0;
    transform: scale(1.15);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.hero-image.transitioning-in {
    opacity: 1;
    transform: scale(1);
    animation: zoomInFade 1.5s ease-out forwards;
}

@keyframes zoomInFade {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,31,63,0.7) 0%, transparent 50%, rgba(255,107,53,0.3) 100%);
}

.hero-diagonal {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,31,63,0.8) 0%, transparent 50%);
    transform: skewY(-6deg);
    transform-origin: top left;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.hero-icon {
    font-size: 5rem;
    filter: drop-shadow(0 0 20px rgba(255,107,53,0.8));
    margin-bottom: 2rem;
    animation: iconRotate 3s infinite;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.hero-title {
/*    font-size: clamp(3rem, 15vw, 12rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin: 0 0 1rem 0;
    color: white;
    -webkit-text-stroke: 3px #001f3f;
    text-stroke: 3px #001f3f;
    transform: skewX(-6deg);
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.5));
    animation: slideInUp 0.8s ease-out 0.2s both;
*/
    font-size: clamp(3rem, 15vw, 12rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin: 0 0 1rem 0;
    color: white;
    text-shadow: 
        -4px -4px 0 #001f3f,
        4px -4px 0 #001f3f,
        -4px 4px 0 #001f3f,
        4px 4px 0 #001f3f,
        0 0 30px rgba(255,255,255,0.5);
    transform: skewX(-6deg);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    /*    font-size: clamp(2rem, 10vw, 8rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin: 0 0 2rem 0;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: skewX(6deg);
    filter: drop-shadow(0 0 30px rgba(255,107,53,0.8));
    animation: slideInUp 0.8s ease-out 0.4s both;*/
    font-size: clamp(2rem, 10vw, 8rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin: 2rem 2rem 2rem 2rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*background-clip: text;*/
    transform: skewX(6deg);
    filter: 
        drop-shadow(-2px -2px 0 #d84315) 
        drop-shadow(2px -2px 0  #d84315) 
        drop-shadow(-2px 2px 0  #d84315)
        drop-shadow(2px 2px 0   #d84315)
        drop-shadow(0 0 30px rgba(255,107,53,0.8));
    animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(100px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: scaleIn 0.5s ease-out 0.6s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.hero-btn {
    position: relative;
    padding: 1.25rem 2.5rem;
    font-weight: 900;
    font-size: 1.25rem;
    font-style: italic;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}

.hero-btn.primary {
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    color: white;
    transform: skewX(6deg);
    box-shadow: 0 0 40px rgba(255,107,53,0.6);
}

.hero-btn.primary:hover {
    transform: skewX(6deg) scale(1.1) rotate(-2deg);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 4px solid white;
    transform: skewX(-6deg);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.hero-btn.secondary:hover {
    background: white;
    color: #001F3F;
    transform: skewX(-6deg) scale(1.1) rotate(2deg);
}

.hero-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.indicator {
    width: 2rem;
    height: 0.5rem;
    background: rgba(255,255,255,0.5);
    border: none;
    border-radius: 9999px;
    transform: skewX(12deg);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    width: 4rem;
    background: linear-gradient(to right, #FF6B35, #FFD700);
}

.indicator:hover {
    transform: skewX(12deg) scale(1.2);
}

.floating-square {
    position: absolute;
    top: 25%;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    border: 4px solid rgba(255,107,53,0.3);
    transform: rotate(45deg);
    animation: floatSquare 4s infinite;
}

@keyframes floatSquare {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(55deg); }
}

.floating-circle {
    position: absolute;
    bottom: 25%;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,215,0,0.2));
    border-radius: 50%;
    animation: floatCircle 3s infinite;
}

@keyframes floatCircle {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(20px) scale(1.2); }
}

/* ========================================
   SCHEDULE SECTION
   ======================================== */
.schedule-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: white;
}

.schedule-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #001F3F 0%, #003366 100%);
    transform: skewY(-3deg);
    transform-origin: top left;
}

.schedule-bg-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 66.666%;
    height: 33.333%;
    background: linear-gradient(to top left, #FF6B35, #FF8555);
    transform: skewY(3deg);
    transform-origin: bottom right;
    opacity: 0.1;
}

.floating-trophy {
    position: absolute;
    top: 5rem;
    right: 5rem;
    font-size: 12.5rem;
    opacity: 0.1;
    color: #FFD700;
    transform: rotate(12deg);
    animation: floatTrophy 5s infinite;
}

@keyframes floatTrophy {
    0%, 100% { transform: rotate(12deg) scale(1); }
    50% { transform: rotate(24deg) scale(1.1); }
}

.section-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-icon {
    font-size: 3.75rem;
    filter: drop-shadow(0 0 20px rgba(255,107,53,0.8));
    margin-bottom: 1.5rem;
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-icon.rotating {
    animation: iconRotateSlow 4s infinite;
}

@keyframes iconRotateSlow {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.section-icon.sparkle {
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.section-title {
    font-size: clamp(3rem, 12vw, 9rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.section-title .title-line1 {
    display: inline-block;
    color: white;
    transform: skewX(-12deg);
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
}

.section-title .title-line2 {
    display: inline-block;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: skewX(12deg);
    filter: drop-shadow(0 0 20px rgba(255,107,53,0.5));
    padding:1.25rem;

}

.section-title.dark .title-line1 {
    color: #001F3F;
}

.section-title.light .title-line1 {
    color: white;
}

.section-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    margin-top: 1.5rem;
}

.section-subtitle.dark {
    color: #001F3F;
}

.section-subtitle.light {
    color: white;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.game-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.game-card:hover {
    transform: scale(1.05) rotate(2deg);
}

.game-card.upcoming {
    /*background: linear-gradient(135deg, #FF6B35, #FF8555);*/
    /*background: linear-gradient(135deg, #aa4e2d, ff8555);*/
    /*background: linear-gradient(135deg, #001f3f, #ff8555);*/
    /*background: linear-gradient(135deg, #773a23, #fc8d61);*/
    background: linear-gradient(135deg, #773a23, #e5571f);
}

.game-card.win {
    /*background: linear-gradient(135deg, #10b981, #059669);*/
    background: linear-gradient(135deg, #001f3f, #365576);
}

.game-card.loss {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.card-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.1) 10px, rgba(255,255,255,0.1) 20px);
    opacity: 0.1;
}

.card-content {
    position: relative;
    z-index: 10;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.week-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
    font-style: italic;
}

.result-badge {
    background: white;
    color: #111827;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.875rem;
    transform: rotate(-6deg);
}

.opponent-name {
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
}

.game-details {
    margin-bottom: 1rem;
}

.detail-item {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.score-box {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
    font-style: italic;
}

.upcoming-text {
    font-size: 1.125rem;
}

.card-hover-effect {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.game-card:hover .card-hover-effect {
    transform: translateX(100%);
}

/* Stats Banner */
.stats-banner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(to right, #001F3F, #003366, #001F3F);
    padding: 2.5rem;
    transform: skewY(-1deg);
    margin-top: 3rem;
    transition: transform 0.3s;
}

.stats-banner:hover {
    transform: skewY(-1deg) scale(1.02);
}

.stats-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,107,53,0.2), rgba(255,215,0,0.2));
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.stats-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 640px) {
    .stats-content {
        flex-direction: row;
        justify-content: space-around;
    }
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 4.5rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s;
}

.stat-item:hover .stat-value {
    transform: scale(1.2);
}

.stat-label {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    font-style: italic;
}

.stat-divider {
    display: none;
    width: 1px;
    height: 6rem;
    background: linear-gradient(to bottom, transparent, #FF6B35, transparent);
}

@media (min-width: 640px) {
    .stat-divider {
        display: block;
    }
}

/* ========================================
   PLAYER SECTION
   ======================================== */
.player-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B35, #FF8555, #FFD700);
}

.player-bg-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 66.666%;
    height: 100%;
    background: #001F3F;
    transform: skewX(12deg);
    transform-origin: top right;
}

.floating-shape-circle {
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 10rem;
    height: 10rem;
    border: 8px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: floatShapeCircle 8s infinite;
}

@keyframes floatShapeCircle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.floating-shape-square {
    position: absolute;
    bottom: 5rem;
    right: 10rem;
    width: 8rem;
    height: 8rem;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    animation: floatShapeSquare 6s infinite;
}

@keyframes floatShapeSquare {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-30px) rotate(90deg); }
}

.player-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .player-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.player-image-col {
    position: relative;
}

.trophy-badge {
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
    z-index: 20;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    padding: 1.5rem;
    font-size: 3.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: trophyFloat 3s infinite;
}

@keyframes trophyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.player-image-wrapper {
    position: relative;
    transform: rotate(-6deg);
    transition: transform 0.5s;
}

.player-image-wrapper:hover {
    transform: rotate(0deg) scale(1.05);
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, #FFD700, #FFA500);
    border-radius: 24px;
    filter: blur(40px);
    opacity: 0.5;
}

.player-image {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #001F3F, transparent);
}

.number-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #001F3F, #003366);
    border-radius: 50%;
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    font-size: 3.75rem;
    font-weight: 900;
    font-style: normal;
    color: white;
    text-align: center;
    line-height: 1;
    transition: transform 0.6s;
}

.number-badge:hover {
    transform: rotate(360deg);
}

.player-info-col {
    color: white;
}

.player-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid rgba(255,255,255,0.3);
    margin-bottom: 1.5rem;
    font-weight: 900;
    font-size: 1.125rem;
    font-style: italic;
}

.player-name {
    font-size: clamp(2.5rem, 8vw, 8rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin: 0 0 1rem 0;
}

.name-line1 {
    display: block;
    color: white;
    transform: skewX(-6deg);
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
}

.name-line2 {
    display: block;
    color: #001F3F;
    transform: skewX(6deg);
    margin-top: 0.5rem;
}

.name-line3 {
    display: block;
    color: white;
    transform: skewX(-6deg);
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
    margin-top: 0.5rem;
}

.player-position {
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
    color: #001F3F;
    transform: skewX(3deg);
    margin-bottom: 1.5rem;
}

.player-description {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.player-description:hover {
    transform: scale(1.02);
}

.player-description p {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 700;
    margin: 0;
}

.player-description strong {
/*    color: #001F3F;
*/
    font-weight: 900;
    font-style: italic;
}

/* Player Stats */
.player-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    position: relative;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: scale(1.1) rotate(5deg);
}


.stat-card.stat-blue {
    background: linear-gradient(90deg, #19589a, #2c5581);
    stroke: #ff6b35;
}

.stat-card.stat-white {
    background: linear-gradient(90deg, #ffffff, #929ca6);
    stroke: #ff6b35;
}

.stat-card.stat-orange {
    background: linear-gradient(90deg, #ff6b35, #974629);
    stroke: #ffffff;
}

.stat-card.stat-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.stat-card.stat-yellow {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.stat-card.stat-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.stat-card-bg {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.stat-card:hover .stat-card-bg {
    transform: translateY(0);
}

.stat-card-content {
    position: relative;
    z-index: 10;
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.9;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #001F3F, #003366);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: 900;
    font-size: 1.125rem;
    font-style: italic;
    transform: skewX(-6deg);
    transition: transform 0.3s;
}

.achievement-badge:hover {
    transform: skewX(-6deg) scale(1.05);
}

.section-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 8rem;
}

/* ========================================
   NEWS SECTION
   ======================================== */
.news-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: white;
}

.news-bg-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #001F3F, #003366);
    transform: skewX(-12deg);
    transform-origin: top left;
}

.news-floating-blob {
    position: absolute;
    top: 10rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,215,0,0.2));
    border-radius: 50%;
    filter: blur(60px);
    animation: blobFloat 8s infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: scale(1) translateX(0); }
    50% { transform: scale(1.3) translateX(50px); }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 4px solid transparent;
}

.news-card:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 50;
    border-color: transparent;
}

.news-card.news-card-red:hover {
    border-image: linear-gradient(to right, #ef4444, #f97316) 1;
}

.news-card.news-card-purple:hover {
    border-image: linear-gradient(to right, #a855f7, #ec4899) 1;
}

.news-card.news-card-yellow:hover {
    border-image: linear-gradient(to right, #eab308, #10b981) 1;
}

.news-card.news-card-blue:hover {
    border-image: linear-gradient(to right, #3b82f6, #06b6d4) 1;
}

.news-card.news-card-orange:hover {
    border-image: linear-gradient(to right, #ff6b35, #ffd700) 1;
}


.news-image {
    position: relative;
    height: 20rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.6s;
}

.news-card:hover .news-image {
    transform: scale(1.2);
}

.news-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000000, rgba(0,0,0,0.5), transparent);
}

.news-icon-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    /*font-size: 1.75rem;*/
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.6s;
}

.news-card:hover .news-icon-badge {
    transform: rotate(360deg);
}

.news-icon-badge.color-red {
    background: linear-gradient(to right, #ef4444, #f97316);
}

.news-icon-badge.color-purple {
    background: linear-gradient(to right, #a855f7, #ec4899);
}

.news-icon-badge.color-yellow {
    background: linear-gradient(to right, #eab308, #10b981);
}

.news-icon-badge.color-blue {
    background: linear-gradient(to right, #19589a, #2c5581);
}

.news-icon-badge.color-orange {
    background: linear-gradient(to right, #ff6b35, #974629);
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
}

.news-excerpt {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #FF6B35, #FFD700);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 900;
    font-size: 0.875rem;
    font-style: italic;
    transform: skewX(6deg);
    cursor: pointer;
    transition: all 0.3s;
}

.news-btn:hover {
    transform: skewX(0deg) scale(1.1);
}

.news-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-view-all {
    background: linear-gradient(to right, #001F3F, #003366);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    border: none;
    font-weight: 900;
    font-size: 1.25rem;
    font-style: italic;
    transform: skewX(6deg);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.btn-view-all:hover {
    transform: skewX(6deg) scale(1.1) rotate(-2deg);
}

/* ========================================
   SPONSORS SECTION
   ======================================== */
.sponsors-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #001F3F, #002a5c, #001F3F);
}

.sponsors-bg-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 33.333%;
    background: linear-gradient(to left, #FF6B35, #FF8555);
    transform: skewY(6deg);
    transform-origin: top right;
    opacity: 0.2;
}

.sponsors-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33.333%;
    height: 50%;
    background: linear-gradient(to right, #FFD700, #FF8555);
    transform: skewY(-6deg);
    transform-origin: bottom left;
    opacity: 0.1;
}

.sponsors-floating-icon {
    position: absolute;
    top: 5rem;
    left: 5rem;
    font-size: 9.375rem;
    opacity: 0.2;
    animation: iconRotate360 20s infinite linear;
}

@keyframes iconRotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sponsors Grid - 4 columns */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Responsive grid */
@media (max-width: 1200px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SPONSOR CARDS
   ======================================== */
.sponsor-card {
    position: relative;
    border-radius: 24px;
    /*padding: 1rem;*/
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.sponsor-card:nth-child(4n+1) {
    transform: rotate(-3deg);
}

.sponsor-card:nth-child(4n+2) {
    transform: rotate(3deg);
}

.sponsor-card:nth-child(4n+3) {
    transform: rotate(-2deg);
}

.sponsor-card:nth-child(4n+4) {
    transform: rotate(2deg);
}

.sponsor-card:hover {
    transform: rotate(0deg) scale(1.1);
    z-index: 50;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.sponsor-card > img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 200px;
    position: relative;
    z-index: 10;
    transition: transform 0.3s;
}

.sponsor-card:hover > img {
    transform: scale(1.1);
}

/* Sponsor Icon Badge */
.sponsor-icon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 5rem;
    height: 5rem;
    /*background: linear-gradient(135deg, #FF6B35, #FFD700);*/
/*    border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
/*    padding: 0.5rem;*/
/*    box-shadow: 0 4px 12px rgba(0,0,0,0.3);*/
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 20;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
}

.sponsor-icon-badge img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: filter 0.3s;
}

.sponsor-card:hover .sponsor-icon-badge {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Icon Pulse Animation on hover */
@keyframes sponsorIconPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        transform: scale(1.2) rotate(10deg); 
    }
}

.sponsor-card:hover .sponsor-icon-badge {
    animation: sponsorIconPulse 0.6s ease-in-out;
}

/* Add gradient border on hover */
.sponsor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.sponsor-card:hover::before {
    opacity: 1;
}

/* ========================================
   SPONSOR CTA BANNER
   ======================================== */
.sponsor-cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    padding: 4rem;
    transform: skewY(-1deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.sponsor-cta-banner:hover {
    transform: skewY(-1deg) scale(1.02);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    animation: ctaPatternMove 20s infinite linear;
}

@keyframes ctaPatternMove {
    from { background-position: 0% 0%; }
    to { background-position: 100% 100%; }
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    color: white;
    margin: 0 0 1.5rem 0;
}

.cta-title span {
    display: block;
}

.cta-title span:first-child {
    transform: skewX(-6deg);
}

.cta-highlight {
    color: #001F3F;
    transform: skewX(6deg);
    filter: drop-shadow(0 0 20px rgba(0,31,63,0.5));
}

.cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    max-width: 42rem;
}

.cta-button {
    background: #001F3F;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    border: none;
    font-weight: 900;
    font-size: 1.25rem;
    font-style: italic;
    transform: skewX(6deg);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: skewX(0deg) scale(1.1);
    box-shadow: 0 0 40px rgba(0,31,63,0.8);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #001F3F, #002a5c, #001F3F);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    transform: skewY(-3deg) translateY(-4rem);
}

.footer-floating-circle {
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    border: 8px solid rgba(255,107,53,0.2);
    border-radius: 50%;
    animation: floatCircleSlow 15s infinite;
}

@keyframes floatCircleSlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.2); }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    position: relative;
    z-index: 10;
}

.footer-brand {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin: 0 0 1.5rem 0;
    transition: transform 0.3s;
}

.footer-brand:hover {
    transform: scale(1.05);
}

.brand-nhs {
    display: block;
    color: white;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.brand-eagles {
    display: block;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-desc span {
    color: #FF6B35;
    font-style: italic;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.social-icon:hover {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 0 20px rgba(255,107,53,0.6);
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(to right, #FF6B35, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 700;
    font-style: italic;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #FF6B35;
    transform: translateX(10px);
    display: inline-block;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.footer-contact li:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
    transition: transform 0.3s;
}

.footer-contact li:hover .contact-icon {
    transform: scale(1.1);
}

.newsletter-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    width: 100%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: white;
    font-weight: 700;
    font-style: italic;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
    border-color: #FF6B35;
}

.newsletter-btn {
    width: 100%;
    background: linear-gradient(to right, #FF6B35, #FFD700);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 900;
    font-style: italic;
    cursor: pointer;
    transform: skewX(3deg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.newsletter-btn:hover {
    transform: skewX(0deg) scale(1.05);
    box-shadow: 0 0 20px rgba(255,107,53,0.6);
}

.footer-bottom {
    border-top: 2px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.footer-love {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 700;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    transition: transform 0.3s;
}

.footer-love:hover {
    transform: scale(1.05);
}

.heart {
    color: #FF6B35;
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    border: none;
    background: transparent;
    cursor: pointer;
    animation: scaleIn 0.3s ease-out;
}

.scroll-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #FF6B35, #FFD700);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.75;
    transition: opacity 0.3s;
}

.scroll-to-top:hover .scroll-glow {
    opacity: 1;
}

.scroll-button {
    position: relative;
    background: linear-gradient(to right, #FF6B35, #FF8555, #FFD700);
    padding: 1.25rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transform: skewX(6deg);
    transition: all 0.3s;
}

.scroll-to-top:hover .scroll-button {
    transform: skewX(0deg) scale(1.2) rotate(15deg);
}

.scroll-icon {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    animation: iconBounceUp 1.5s infinite;
}

@keyframes iconBounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.scroll-border {
    position: absolute;
    inset: 0;
    border: 4px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: borderRotate 3s infinite linear;
}

@keyframes borderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scroll-sparkle {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: 1.25rem;
    animation: sparkleRotate 2s infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1) rotate(180deg); }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-icon {
        font-size: 3rem;
    }

    .floating-trophy,
    .sponsors-floating-icon,
    .news-floating-blob {
        display: none;
    }

    .player-name {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .footer-brand {
        font-size: 2rem;
    }
}