/* ===== FONT IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@200;400;700;900&family=Bebas+Neue&family=Teko:wght@400;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --navy-dark: #0a0e1a;
    --navy-medium: #151c2b;
    --navy-light: #1f2937;
    --crimson: #8b0000;
    --crimson-bright: #dc143c;
    --crimson-dark: #5c0000;
    --gold: #d4a017;
    --gold-dark: #b8860b;
    --cream: #e0dbd1;
    --text-light: #c4b5a0;
    --wood-dark: #2d1f1a;
    --steel: white;
    --water-blue: #1e4d6b;
    --rust: #8b4513;
    --dark-bg: #050810;
    --blood-red: #a01c1c;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Teko', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    user-select: none;
}

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

/* ===== PIRATE-THEMED BACKGROUND ===== */
.water-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(45, 31, 26, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--navy-dark) 40%, var(--navy-medium) 100%);
    z-index: -1;
    overflow: hidden;
}

.water-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, transparent 12%, rgba(31, 41, 55, 0.15) 12%, rgba(31, 41, 55, 0.15) 14%, transparent 14%),
        linear-gradient(150deg, transparent 12%, rgba(31, 41, 55, 0.15) 12%, rgba(31, 41, 55, 0.15) 14%, transparent 14%),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 0, 0, 0.03) 2px, rgba(139, 0, 0, 0.03) 4px);
    background-size: 80px 140px, 80px 140px, 100% 100%;
    opacity: 0.4;
    animation: geometricShift 40s linear infinite;
}

.water-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0, 0, 0, 0.1) 100px, rgba(0, 0, 0, 0.1) 102px),
        radial-gradient(ellipse at center, transparent 0%, rgba(5, 8, 16, 0.5) 100%);
}

@keyframes geometricShift {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(140px) rotate(3deg); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.98) 0%, rgba(10, 14, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 4px solid var(--crimson);
    box-shadow: 
        0 0 0 1px rgba(201, 168, 106, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 1.2rem 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 8px));
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(139, 0, 0, 0.05) 3px, rgba(139, 0, 0, 0.05) 6px),
        linear-gradient(180deg, rgba(139, 0, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: linear-gradient(180deg, var(--crimson), var(--rust));
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
}

.logo img {
    width: 50px;
    height: auto;
    animation: subtleFloat 4s linear infinite;
}

@keyframes subtleFloat {
    0%, 50%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-3px); }
    75% { transform: translateY(3px); }
}

.logo-text {
    letter-spacing: 4px;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(212, 160, 23, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--steel);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--gold));
    transition: width 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 100%, 4px 100%);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--cream);
    text-shadow: 0 0 10px rgba(201, 168, 106, 0.5);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover::after {
    width: 100%;
    opacity: 0.3;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 168, 106, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo img {

    animation: pulseGlow 4s linear infinite;
    height: auto;
    width: 50%;
}

@keyframes pulseGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px var(--blood-red));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 40px var(--crimson-bright));
        transform: scale(1.02);
    }
}

.title-crimson {
    color: var(--crimson-bright);
    display: block;
    text-transform: uppercase;
}

.title-sails {
    color: var(--gold);
    display: block;
    text-transform: uppercase;
}

.tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--steel);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-subtitle {
    max-width: 750px;
    margin: 0 auto 3rem;
}

.hero-subtitle p {
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    color: var(--cream);
    opacity: 0.85;
    line-height: 1.8;
    font-weight: 400;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(92, 0, 0, 0.4);
    border: 3px solid var(--crimson);
    padding: 16px 32px;
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--crimson-bright);
    text-transform: uppercase;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(212, 160, 23, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.3), transparent);
    animation: badgeShine 4s infinite;
}

@keyframes badgeShine {
    0% { left: -150%; }
    50%, 100% { left: 150%; }
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--crimson-bright);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: dotPulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 15px var(--crimson-bright);
}

@keyframes dotPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.6;
    }
}

/* ===== WAVES DECORATION ===== */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.wave1 {
    clip-path: polygon(0 60%, 10% 55%, 20% 60%, 30% 55%, 40% 60%, 50% 55%, 60% 60%, 70% 55%, 80% 60%, 90% 55%, 100% 60%, 100% 100%, 0 100%);
    transform: scaleX(1.05);
    background: var(--water-blue);
    animation: waveSlide1 2s ease-in-out infinite;
}

.wave2 {
    clip-path: polygon(0 70%, 15% 65%, 25% 70%, 35% 65%, 45% 70%, 55% 65%, 65% 70%, 75% 65%, 85% 70%, 95% 65%, 100% 70%, 100% 100%, 0 100%);
    background: var(--navy-light);
    animation: waveSlide2 6s ease-in-out infinite;
    animation-delay: -3s;
}

.wave3 {
    clip-path: polygon(0 80%, 12% 75%, 24% 80%, 36% 75%, 48% 80%, 60% 75%, 72% 80%, 84% 75%, 96% 80%, 100% 75%, 100% 100%, 0 100%);
    background: var(--navy-medium);
    animation: waveSlide3 4s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes waveSlide1 {
    0%, 100% { transform: translateX(0) scaleX(1.05); }
    50% { transform: translateX(-90px) scaleX(1.05); }
}

@keyframes waveSlide2 {
    0%, 100% { transform: translateX(0) scaleX(1.05); }
    50% { transform: translateX(100px) scaleX(1.05); }
}

@keyframes waveSlide3 {
    0%, 100% { transform: translateX(0) scaleX(1.05); }
    50% { transform: translateX(-80px) scaleX(1.05); }
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 20px;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--crimson), var(--gold), var(--crimson), transparent);
    opacity: 0.4;
}

.section-title {
    font-family: 'Cinzel', serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(201, 168, 106, 0.4);
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--crimson);
    clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 100%, 4px 100%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

.title-decoration {
    color: var(--crimson);
    margin: 0 2rem;
    filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.6));
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: rgba(21, 28, 43, 0.4);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(139, 0, 0, 0.05);
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text .lead-text {
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--cream);
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

.about-text .lead-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--crimson), var(--rust), var(--gold));
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 1.75rem;
    background: rgba(10, 14, 26, 0.9);
    border-left: 5px solid var(--crimson);
    border-right: 1px solid rgba(212, 160, 23, 0.2);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.15), transparent);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.stat-item:hover {
    transform: translateX(10px);
    border-left-color: var(--gold);
}

.stat-label {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--crimson-bright);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
    min-width: 50px;
    text-align: center;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-text strong {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-text span {
    color: var(--steel);
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.placeholder-box {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--wood-dark);
    border: 4px solid var(--gold);
    clip-path: polygon(25px 0, calc(100% - 25px) 0, 100% 25px, 100% calc(100% - 25px), calc(100% - 25px) 100%, 25px 100%, 0 calc(100% - 25px), 0 25px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 2px rgba(212, 160, 23, 0.3),
        inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.placeholder-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(201, 168, 106, 0.03) 25px, rgba(201, 168, 106, 0.03) 50px),
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(139, 0, 0, 0.02) 25px, rgba(139, 0, 0, 0.02) 50px);
    animation: diagonalMove 40s linear infinite;
}

@keyframes diagonalMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.placeholder-box::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(201, 168, 106, 0.15);
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}

.placeholder-content {
    text-align: center;
    z-index: 1;
}

.placeholder-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    filter: drop-shadow(0 0 15px rgba(201, 168, 106, 0.4));
}

.placeholder-content p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: rgba(10, 14, 26, 0.5);
}

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

.feature-card {
    background: rgba(21, 28, 43, 0.95);
    padding: 2.5rem 2.25rem;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    border: 3px solid var(--navy-light);
    border-top-color: var(--crimson);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(212, 160, 23, 0.1),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(139, 0, 0, 0.2), transparent);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--crimson);
    border-top-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 
        0 15px 40px rgba(139, 0, 0, 0.3),
        0 0 0 2px rgba(201, 168, 106, 0.3);
}

.feature-card:hover::before {
    background: radial-gradient(circle, rgba(139, 0, 0, 0.3), transparent);
}

.feature-number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--crimson);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-number {
    opacity: 0.5;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(201, 168, 106, 0.8);
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    padding-bottom: 10px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--crimson), transparent);
    clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 100%, 4px 100%);
}

.feature-card p {
    color: var(--cream);
    line-height: 1.8;
    font-size: 1.2rem;
}

/* ===== NEWS SECTION ===== */
.news-section {
    background: rgba(27, 38, 59, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.news-card {
    background: rgba(31, 41, 55, 0.95);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    overflow: hidden;
    border: 2px solid var(--navy-light);
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card:hover {
    border-color: var(--crimson);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
}

.news-image {
    width: 100%;
    height: 200px;
    background: var(--water-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.news-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(241, 196, 15, 0.03) 15px, rgba(241, 196, 15, 0.03) 30px),
        repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(230, 57, 70, 0.02) 15px, rgba(230, 57, 70, 0.02) 30px);
}

.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
}

.news-marker {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 6px;
    position: relative;
    z-index: 2;
    text-shadow: 
        2px 2px 0 rgba(0, 0, 0, 0.8),
        0 0 20px rgba(201, 168, 106, 0.6);
}

.news-content {
    padding: 1.75rem 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.news-date {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-category {
    background: rgba(220, 20, 60, 0.3);
    color: var(--crimson-bright);
    padding: 6px 14px;
    clip-path: polygon(4px 0, calc(100% - 4px) 0, 100% 4px, 100% calc(100% - 4px), calc(100% - 4px) 100%, 4px 100%, 0 calc(100% - 4px), 0 4px);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    color: var(--cream);
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    line-height: 1.5;
    font-weight: 700;
}

.news-card p {
    color: var(--steel);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

.news-link {
    color: var(--crimson);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.news-link:hover {
    gap: 14px;
    color: var(--gold);
}

.no-news {
    text-align: center;
    padding: 5rem 2rem;
}

.compass-rose {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    position: relative;
    opacity: 0.4;
    animation: compassSpin 20s linear infinite;
}

.compass-points {
    width: 100%;
    height: 100%;
    position: relative;
    border: 3px solid var(--gold);
    clip-path: polygon(50% 7.33%, 74.67% 22.67%, 95.33% 50.00%, 77.33% 79.33%, 50% 92.67%, 23.33% 76.67%, 4% 48.67%, 20.67% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(201, 168, 106, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.compass-points::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border: 2px solid var(--crimson);
    clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
}

.compass-points span {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(201, 168, 106, 0.8);
}

.north { top: 10px; left: 50%; transform: translateX(-50%); }
.south { bottom: 10px; left: 50%; transform: translateX(-50%); }
.east { right: 15px; top: 50%; transform: translateY(-50%); }
.west { left: 15px; top: 50%; transform: translateY(-50%); }

@keyframes compassSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.no-news p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--steel);
    line-height: 1.9;
    letter-spacing: 2px;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: var(--crimson-dark);
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 0, 0, 0.1) 50px, rgba(0, 0, 0, 0.1) 100px);
    pointer-events: none;
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-box h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.newsletter-box > p {
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(241, 196, 15, 0.5);
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
    background: rgba(13, 27, 42, 0.6);
    color: var(--cream);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    font-weight: 500;
}

.newsletter-form input::placeholder {
    color: rgba(240, 229, 216, 0.4);
}

.newsletter-form input:focus {
    background: rgba(13, 27, 42, 0.8);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.3);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--dark-bg);
    border: none;
    clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px);
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.newsletter-note {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.7;
    font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    border-top: 3px solid var(--crimson);
    padding: 20px 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 90px;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    color: var(--steel);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-subtext {
    font-size: 0.85rem;
    opacity: 0.6;
}

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

.social {
    min-width: 90px;
    height: 50px;
    padding: 0 18px;
    background: rgba(10, 25, 56, 0.95);
    border: 2px solid var(--navy-light);
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.5;
    position: relative;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.social::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(139, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.social:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    opacity: 1;
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.5),
        0 5px 20px rgba(0, 0, 0, 0.4);
}

.social:hover::before {
    opacity: 1;
}

.social-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--steel);
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.social:hover .social-text {
    color: var(--gold);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .game-title {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2.5rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .feature-card,
    .news-card {
        margin: 0 10px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-crimson {
    color: var(--crimson);
}

.text-gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--crimson);
    color: var(--cream);
    padding: 1.25rem 2rem;
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
    border: 2px solid var(--gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    animation: slideInRight 0.4s ease-out, fadeOut 0.4s ease-out 2.6s;
    z-index: 2000;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@keyframes slideInRight {
    from {
        transform: translateX(450px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(450px);
    }
}