* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto;
    background-color: #0A0E1A;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===================================
   UK WELCOME BANNER
   =================================== */

.uk-welcome-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #012169 0%, #C8102E 100%);
    border-bottom: 3px solid #FFD700;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.5);
    animation: slideDown 0.6s ease-out;
    padding: 20px 0;
}

.uk-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.uk-flag-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 2px solid #FFD700;
    animation: ukPulse 2s infinite;
}

.uk-flag-icon svg {
    width: 36px;
    height: 36px;
}

.uk-banner-content {
    flex: 1;
    max-width: 900px;
    color: #ffffff;
}

.uk-banner-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.uk-banner-message {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.uk-banner-message strong {
    font-weight: 700;
    color: #FFD700;
}

.uk-banner-close {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.uk-banner-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(90deg);
    border-color: #FFD700;
}

.uk-banner-close svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

/* Adjust body padding when UK banner is visible */
body.uk-banner-visible {
    padding-top: 110px;
}

/* Adjust navbar when UK banner is visible */
body.uk-banner-visible .navbar {
    top: 110px;
}

@keyframes ukPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

/* ===================================
   NAVBAR - UK THEMED
   =================================== */

.navbar {
    background: linear-gradient(135deg, #012169 0%, #001a4d 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid #C8102E;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo h2 {
    background: linear-gradient(135deg, #FFD700, #C8102E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    cursor: pointer;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

.navbar-logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.navbar-logo h2::before {
    content: '🇬🇧 ';
    font-size: 1.2rem;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #E8E8E8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link.active {
    color: #FFD700;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFD700, #C8102E);
    border-radius: 2px;
}

/* Mobile Toggle Button - UK Styled */
.navbar-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.navbar-mobile-toggle:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.navbar-mobile-toggle:active {
    transform: scale(0.95);
}

.navbar-mobile-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(135deg, #FFD700, #fff);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Hamburger to X Animation */
.navbar-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #FFD700;
}

.navbar-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #FFD700;
}

/* Mobile Drawer - UK Theme */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(180deg, #012169 0%, #0A0E1A 100%);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -4px 0 20px rgba(200, 16, 46, 0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-left: 2px solid #C8102E;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-content {
    padding: 1.5rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 1.5rem;
}

.mobile-drawer-logo {
    background: linear-gradient(135deg, #FFD700, #C8102E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

.close-drawer {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.close-drawer:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: rotate(90deg);
}

.mobile-links-container {
    flex: 1;
}

.mobile-link {
    display: flex;
    align-items: center;
    color: #E8E8E8;
    text-decoration: none;
    padding: 1rem 1.2rem;
    min-height: 52px;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.mobile-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(135deg, #FFD700, #C8102E);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.mobile-link:hover,
.mobile-link:focus {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.mobile-link.active {
    color: #FFD700;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.mobile-link.active::before {
    transform: scaleY(1);
}

.mobile-wallet-container {
    padding: 1.5rem 0 0.5rem 0;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: auto;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-carousel {
    max-width: 100%;
    padding: 0 2rem;
}

/* Gradient Text - UK Colors */
.gradient-text {
    background: linear-gradient(135deg, #FFD700, #C8102E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   HERO SECTION - UK THEMED
   ======================================== */

.hero-section {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(1, 33, 105, 0.9) 0%,
        rgba(10, 14, 26, 0.85) 50%,
        rgba(1, 33, 105, 0.9) 100%
    );
    z-index: 1;
}

.hero-video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.15) 0%,
        transparent 50%,
        rgba(200, 16, 46, 0.15) 100%
    );
    animation: ukGradientShift 15s ease infinite;
}

@keyframes ukGradientShift {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(0);
    }
    50% {
        opacity: 0.7;
        transform: translateX(10px);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(1, 33, 105, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid #FFD700;
    border-radius: 25px;
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.hero-badge svg {
    color: #FFD700;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(200, 16, 46, 0.5);
    font-family: 'Georgia', serif;
}

.hero-subtitle {
    font-size: 18px;
    color: #E8E8E8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 48px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #012169;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(10px);
    border: 2px solid #FFD700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.7);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: rgba(1, 33, 105, 0.6);
    backdrop-filter: blur(10px);
    color: #E8E8E8;
    border: 2px solid #C8102E;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.hero-stats {
    display: flex;
    gap: 120px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(1, 33, 105, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.stat-value {
    font-size: 42px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 16px;
    color: #E8E8E8;
}

/* Community Section - UK Style */
.community-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        #0A0E1A 0%, 
        rgba(1, 33, 105, 0.3) 50%, 
        #0A0E1A 100%);
    text-align: center;
}

.community-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(1, 33, 105, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    color: #FFD700;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
    font-family: 'Georgia', serif;
}

.community-badge svg {
    color: #FFD700;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Georgia', serif;
}

.section-subtitle {
    font-size: 18px;
    color: #C0C0C0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 48px;
}

.social-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    border: 2px solid;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.telegram {
    background: rgba(1, 33, 105, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.social-btn.telegram:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.social-btn.whatsapp {
    background: rgba(200, 16, 46, 0.2);
    border-color: rgba(200, 16, 46, 0.4);
    color: #C8102E;
    box-shadow: 0 4px 20px rgba(200, 16, 46, 0.15);
}

.social-btn.whatsapp:hover {
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.3);
}

.social-btn.facebook {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.social-btn.facebook:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
}

/* Featured Section - UK Theme */
.featured-section {
    padding: 80px 0;
    text-align: center;
    background: rgba(1, 33, 105, 0.1);
}

.featured-loading,
.news-loading,
.carousel-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px;
    color: #C0C0C0;
}

.featured-loading.hidden,
.news-loading.hidden,
.carousel-loading.hidden {
    display: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #012169;
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.nft-card {
    background: linear-gradient(145deg, #012169, #0A0E1A);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nft-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.nft-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, #FFD700, #C8102E);
}

.nft-card-content {
    padding: 20px;
    text-align: left;
}

.nft-card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
    font-family: 'Georgia', serif;
}

.nft-card-creator {
    font-size: 14px;
    color: #C0C0C0;
    margin-bottom: 12px;
}

.nft-card-price {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700, #C8102E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
}

.nft-card-stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #808080;
}

.nft-card-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* News Section - UK Style */
.news-section {
    padding: 80px 0;
    background: linear-gradient(180deg, 
        #0A0E1A 0%, 
        rgba(1, 33, 105, 0.2) 50%, 
        #0A0E1A 100%);
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    color: #FFD700;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    font-family: 'Georgia', serif;
}

.category-filter {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 48px 0;
}

.category-btn {
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: rgba(1, 33, 105, 0.3);
    color: #E8E8E8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.category-btn.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-color: transparent;
    color: #012169;
    font-weight: 700;
}

.news-content {
    margin-top: 48px;
}

.highlights-section {
    margin-bottom: 48px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    height: 400px;
}

.highlight-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #012169, rgba(1, 33, 105, 0.5));
    border: 2px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: #FFD700;
}

.highlight-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(1, 33, 105, 0.8) 60%, 
        #012169 100%);
}

.highlight-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.3);
    border: 1px solid #FFD700;
    border-radius: 20px;
    color: #FFD700;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.highlight-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #fff;
    font-family: 'Georgia', serif;
}

.highlight-description {
    font-size: 14px;
    color: rgba(232, 232, 232, 0.8);
    line-height: 1.5;
    margin-bottom: 12px;
}

.highlight-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(232, 232, 232, 0.6);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.news-card {
    background: linear-gradient(145deg, #012169, #0A0E1A);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.news-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card-content {
    padding: 20px;
}

.news-card-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(200, 16, 46, 0.3);
    color: #C8102E;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    margin-bottom: 8px;
    border: 1px solid rgba(200, 16, 46, 0.4);
}

.news-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-description {
    font-size: 13px;
    color: rgba(232, 232, 232, 0.7);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(232, 232, 232, 0.5);
}

/* Carousel Section - UK Theme */
.carousel-section {
    padding: 80px 0;
    overflow: hidden;
    background: rgba(1, 33, 105, 0.1);
}

.carousel-track {
    display: flex;
    gap: 16px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-card {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s;
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.carousel-card:hover {
    transform: scale(1.05);
    border-color: #FFD700;
}

.carousel-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Ads Section - UK Style */
.ads-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0A0E1A 0%, #012169 100%);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.ads-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    color: #FFD700;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-family: 'Georgia', serif;
}

.ads-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 16px;
}

.ads-loading.hidden {
    display: none;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.ad-card {
    background: linear-gradient(145deg, #012169, #0A0E1A);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.ad-card:hover {
    transform: translateY(-4px);
    border-color: #FFD700;
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.3);
}

.ad-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: #012169;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    border: 1px solid #FFD700;
}

.ad-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ad-card:hover .ad-image {
    transform: scale(1.05);
}

.ad-content {
    padding: 20px;
}

.ad-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: 'Georgia', serif;
}

.ad-description {
    font-size: 14px;
    color: #C0C0C0;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ad-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.ad-advertiser {
    font-size: 12px;
    color: #808080;
    font-weight: 500;
}

.ad-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFD700;
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.ad-card:hover .ad-cta {
    gap: 10px;
}

.ad-cta svg {
    transition: transform 0.3s ease;
}

.ad-card:hover .ad-cta svg {
    transform: translateX(4px);
}

/* Footer - UK Style */
.footer {
    padding: 40px 0;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    background: #012169;
}

.footer p {
    color: #C0C0C0;
    font-size: 14px;
}

/* Network Alert Banner - Keep original functionality */
.network-alert-banner {
    position: fixed;
    top: 110px; /* Below UK banner */
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-bottom: 3px solid #ff4757;
    box-shadow: 0 4px 20px rgba(255, 75, 87, 0.4);
    animation: slideDown 0.5s ease-out;
    padding: 24px 0;
}

.alert-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.alert-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.alert-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.alert-content {
    flex: 1;
    max-width: 900px;
    color: #ffffff;
}

.alert-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.alert-message {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.alert-message strong {
    font-weight: 700;
    color: #ffffff;
}

.loss-warning {
    background: rgba(0, 0, 0, 0.25);
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.8px;
    display: inline-block;
    margin: 0 2px;
}

.alert-close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.alert-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(90deg);
}

.alert-close svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

/* Adjust body padding when both banners are visible */
body.uk-banner-visible.alert-visible {
    padding-top: 250px;
}

body.uk-banner-visible.alert-visible .navbar {
    top: 250px;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Tablets and below (1024px) */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .navbar-menu {
        gap: 1.5rem;
    }

    .hero-section {
        min-height: 90vh;
        padding: 100px 0;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-stats {
        gap: 80px;
    }

    .stat-item {
        padding: 16px 32px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .highlight-card {
        height: 300px;
    }
}

/* Tablets (768px to 1023px) */
@media (max-width: 968px) {
    .navbar-menu {
        display: none;
    }

    .navbar-mobile-toggle {
        display: flex;
    }

    .navbar-container {
        padding: 0.875rem 1.5rem;
    }

    .navbar-logo h2 {
        font-size: 1.35rem;
    }

    .hero-section {
        padding: 80px 0 60px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 60px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-item {
        padding: 14px 28px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .ads-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .uk-banner-container {
        padding: 16px 32px;
    }

    .uk-banner-title {
        font-size: 18px;
    }

    .uk-banner-message {
        font-size: 14px;
    }
}

/* Mobile Landscape & Small Tablets (481px to 767px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .navbar-container {
        padding: 0.75rem 1.25rem;
    }

    .navbar-logo h2 {
        font-size: 1.25rem;
    }

    .mobile-drawer {
        width: 90%;
        max-width: 320px;
    }

    .mobile-drawer-content {
        padding: 1.25rem;
    }

    .hero-section {
        padding: 60px 0 48px;
        min-height: 80vh;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 36px;
    }

    .hero-buttons {
        margin-bottom: 60px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-item {
        padding: 12px 24px;
    }

    .community-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .social-btn {
        justify-content: center;
        padding: 18px 28px;
        font-size: 16px;
    }

    .featured-section,
    .news-section,
    .carousel-section,
    .ads-section {
        padding: 48px 0;
    }

    .featured-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ads-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carousel-card {
        width: 140px;
        height: 140px;
    }

    .nft-card-image {
        height: 240px;
    }

    .ad-image {
        height: 200px;
    }

    /* UK Banner Mobile */
    .uk-banner-container {
        flex-direction: column;
        padding: 16px 24px;
        gap: 12px;
    }

    .uk-flag-icon {
        width: 50px;
        height: 50px;
    }

    .uk-banner-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .uk-banner-message {
        font-size: 13px;
        line-height: 1.6;
    }

    body.uk-banner-visible {
        padding-top: 130px;
    }

    body.uk-banner-visible .navbar {
        top: 130px;
    }

    body.uk-banner-visible.alert-visible {
        padding-top: 270px;
    }

    body.uk-banner-visible.alert-visible .navbar {
        top: 270px;
    }
}

/* Mobile Portrait (320px to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .navbar-container {
        padding: 0.625rem 1rem;
    }

    .navbar-logo h2 {
        font-size: 1.15rem;
    }

    .navbar-logo h2::before {
        font-size: 1rem;
    }

    .navbar-mobile-toggle {
        padding: 6px;
    }

    .navbar-mobile-toggle span {
        width: 24px;
        height: 2.5px;
    }

    .mobile-drawer {
        width: 100%;
        max-width: 100%;
    }

    .mobile-drawer-content {
        padding: 1rem;
    }

    .mobile-drawer-header {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .mobile-drawer-logo {
        font-size: 1.15rem;
    }

    .close-drawer {
        width: 40px;
        height: 40px;
        min-height: 40px;
        font-size: 1.3rem;
    }

    .mobile-link {
        padding: 0.875rem 1rem;
        min-height: 48px;
        font-size: 0.95rem;
    }

    .hero-section {
        padding: 48px 0 36px;
        min-height: 75vh;
    }

    .hero-video {
        min-width: 100%;
        min-height: 100%;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 48px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 32px;
        flex-direction: column;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stat-item {
        padding: 10px 20px;
    }

    .community-section,
    .featured-section,
    .news-section,
    .carousel-section,
    .ads-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 36px;
    }

    .social-btn {
        padding: 16px 24px;
        font-size: 15px;
    }

    .carousel-card {
        width: 120px;
        height: 120px;
    }

    .nft-card-image {
        height: 220px;
    }

    .ad-content {
        padding: 16px;
    }

    .ad-image {
        height: 180px;
    }

    .ad-title {
        font-size: 18px;
    }

    .ad-description {
        font-size: 13px;
    }

    /* UK Banner Mobile Small */
    .uk-welcome-banner {
        padding: 14px 0;
    }

    .uk-banner-container {
        padding: 14px 20px;
        gap: 10px;
    }

    .uk-flag-icon {
        width: 45px;
        height: 45px;
    }

    .uk-flag-icon svg {
        width: 28px;
        height: 28px;
    }

    .uk-banner-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .uk-banner-message {
        font-size: 12px;
        line-height: 1.5;
    }

    .uk-banner-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .uk-banner-close svg {
        width: 18px;
        height: 18px;
    }

    body.uk-banner-visible {
        padding-top: 145px;
    }

    body.uk-banner-visible .navbar {
        top: 145px;
    }

    body.uk-banner-visible.alert-visible {
        padding-top: 305px;
    }

    body.uk-banner-visible.alert-visible .navbar {
        top: 305px;
    }

    /* Alert banner adjustments */
    .network-alert-banner {
        padding: 16px 0;
        top: 145px;
    }

    .alert-container {
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        text-align: center;
    }

    .alert-icon {
        width: 52px;
        height: 52px;
    }

    .alert-icon svg {
        width: 26px;
        height: 26px;
    }

    .alert-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .alert-message {
        font-size: 14px;
        line-height: 1.6;
    }

    .alert-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .alert-close svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Devices (< 360px) */
@media (max-width: 359px) {
    .navbar-logo h2 {
        font-size: 1.05rem;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .mobile-link {
        font-size: 0.9rem;
        padding: 0.75rem 0.875rem;
    }

    .carousel-card {
        width: 100px;
        height: 100px;
    }

    .stat-value {
        font-size: 24px;
    }

    .uk-banner-title {
        font-size: 14px;
    }

    .uk-banner-message {
        font-size: 11px;
    }

    body.uk-banner-visible {
        padding-top: 160px;
    }

    body.uk-banner-visible .navbar {
        top: 160px;
    }

    body.uk-banner-visible.alert-visible {
        padding-top: 340px;
    }

    body.uk-banner-visible.alert-visible .navbar {
        top: 340px;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
    visibility: hidden !important;
}

.ads-section.hidden {
    display: none !important;
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Performance optimizations for video */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
    }
    
    .hero-video-overlay::before {
        animation: none;
    }
    
    .uk-flag-icon {
        animation: none;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        margin-bottom: 40px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 40px;
    }

    .stat-item {
        padding: 8px 16px;
    }

    .stat-value {
        font-size: 24px;
    }
    
    .uk-welcome-banner {
        padding: 12px 0;
    }
    
    .uk-banner-container {
        padding: 12px 24px;
    }
}