/* ============================================
   SHARKWIN THEME - main.css (moban-65)
   Shark Totem Ocean Depth Theme
   Colors: #001122 bg, #003366 deep blue, #C0C0C0 silver, #F0F8FF white
   Fonts: Alfa Slab One (headings) + Comfortaa (body)
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Comfortaa', cursive;
    background: #001122;
    color: #F0F8FF;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Alfa Slab One', cursive;
    font-weight: 400;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #C0C0C0;
    transition: all 0.3s ease;
}

a:hover {
    color: #F0F8FF;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

img {
    max-width: 100%;
    height: auto;
}

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

.silver-text {
    color: #C0C0C0;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes waveRipple {
    0% {
        transform: translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-25%);
        opacity: 0.3;
    }
    100% {
        transform: translateX(-50%);
        opacity: 0.6;
    }
}

@keyframes finSlice {
    0% {
        transform: translateX(-100%) translateY(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translateX(0%) translateY(-10px) rotate(3deg);
        opacity: 0.9;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(0) rotate(0deg);
        opacity: 0;
    }
}

@keyframes bubbleRise {
    0% {
        transform: translateY(100%) translateX(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(50%) translateX(20px) scale(0.8);
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-20%) translateX(-10px) scale(1);
        opacity: 0;
    }
}

@keyframes depthPressure {
    0%, 100% {
        box-shadow: inset 0 0 30px rgba(0, 51, 102, 0.3), 0 0 15px rgba(0, 51, 102, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: inset 0 0 50px rgba(0, 51, 102, 0.5), 0 0 25px rgba(0, 51, 102, 0.2);
        transform: scale(1.02);
    }
}

@keyframes waveFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes oceanShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes finSway {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-5px); }
}

@keyframes rippleExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-5px) translateX(3px); }
    50% { transform: translateY(-10px) translateX(-2px); }
    75% { transform: translateY(-5px) translateX(4px); }
}

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

@keyframes notificationScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(192, 192, 192, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(192, 192, 192, 0.6), 0 0 40px rgba(0, 51, 102, 0.3);
    }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #001122 0%, #002244 100%);
    border-bottom: 2px solid rgba(192, 192, 192, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}

.header-time {
    color: #C0C0C0;
    font-size: 13px;
    font-family: 'Comfortaa', cursive;
    letter-spacing: 0.5px;
}

.header-btn-group {
    display: flex;
    gap: 10px;
}

.btn-login {
    padding: 8px 20px;
    border: 1px solid #C0C0C0;
    color: #C0C0C0;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', cursive;
}

.btn-login:hover {
    background: #C0C0C0;
    color: #001122;
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #003366, #004488);
    color: #F0F8FF;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', cursive;
}

.btn-register:hover {
    background: linear-gradient(135deg, #004488, #005599);
    box-shadow: 0 0 15px rgba(0, 51, 102, 0.5);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    background: transparent;
    color: #C0C0C0;
    border: 1px solid rgba(192, 192, 192, 0.4);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', cursive;
}

.btn-demo:hover {
    border-color: #C0C0C0;
    background: rgba(192, 192, 192, 0.1);
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #001a33 0%, #002244 50%, #001a33 100%);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #C0C0C0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', cursive;
}

.nav-link:hover {
    color: #F0F8FF;
    background: rgba(0, 51, 102, 0.3);
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.nav-link i {
    margin-right: 5px;
    color: #003366;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #C0C0C0;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #003366, #004488, #003366);
    padding: 8px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.notification-content {
    display: flex;
    gap: 40px;
    animation: notificationScroll 30s linear infinite;
    white-space: nowrap;
}

.notification-content span {
    color: #C0C0C0;
    font-size: 13px;
    font-family: 'Comfortaa', cursive;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.announcement-modal.active {
    display: flex;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 17, 34, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #002244 0%, #001122 50%, #002244 100%);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 20px;
    padding: 35px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    animation: depthPressure 3s ease-in-out infinite;
    z-index: 1;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #C0C0C0;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.announcement-close:hover {
    color: #F0F8FF;
    transform: rotate(90deg);
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.announcement-header-icon i {
    font-size: 48px;
    color: #C0C0C0;
    animation: waveFloat 3s ease-in-out infinite;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 1px;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(0, 51, 102, 0.2);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(0, 51, 102, 0.4);
    border-color: rgba(192, 192, 192, 0.3);
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Comfortaa', cursive;
}

.announcement-badge.hot {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

.announcement-badge.new {
    background: linear-gradient(135deg, #00aa44, #008833);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #003366, #004488);
    color: #F0F8FF;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: #F0F8FF;
    line-height: 1.4;
}

.announcement-item i.fa-chevron-right {
    color: #C0C0C0;
    font-size: 12px;
    flex-shrink: 0;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #003366, #004488);
    color: #F0F8FF;
    border: 2px solid #C0C0C0;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', cursive;
}

.announcement-cta:hover {
    background: linear-gradient(135deg, #004488, #005599);
    box-shadow: 0 0 20px rgba(0, 51, 102, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* === SHARK HERO SECTION === */
.shark-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: -15px -15px 40px -15px;
    padding: 80px 20px;
}

.ocean-depth-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        #001122 0%, 
        #001a33 15%, 
        #002244 30%, 
        #003366 50%, 
        #002244 70%, 
        #001a33 85%, 
        #001122 100%
    );
    z-index: 0;
}

.ocean-depth-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(0, 51, 102, 0.4) 0%, transparent 60%);
}

.ocean-depth-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #001122, transparent);
}

/* Bubble Field */
.bubble-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(240, 248, 255, 0.4), rgba(192, 192, 192, 0.1));
    border: 1px solid rgba(240, 248, 255, 0.2);
    animation: bubbleRise linear infinite;
}

.bubble-1 { width: 12px; height: 12px; left: 10%; bottom: 0; animation-duration: 8s; animation-delay: 0s; }
.bubble-2 { width: 8px; height: 8px; left: 20%; bottom: 0; animation-duration: 10s; animation-delay: 1s; }
.bubble-3 { width: 15px; height: 15px; left: 35%; bottom: 0; animation-duration: 7s; animation-delay: 2s; }
.bubble-4 { width: 6px; height: 6px; left: 50%; bottom: 0; animation-duration: 12s; animation-delay: 0.5s; }
.bubble-5 { width: 10px; height: 10px; left: 65%; bottom: 0; animation-duration: 9s; animation-delay: 3s; }
.bubble-6 { width: 14px; height: 14px; left: 75%; bottom: 0; animation-duration: 6s; animation-delay: 1.5s; }
.bubble-7 { width: 7px; height: 7px; left: 85%; bottom: 0; animation-duration: 11s; animation-delay: 4s; }
.bubble-8 { width: 11px; height: 11px; left: 92%; bottom: 0; animation-duration: 8s; animation-delay: 2.5s; }

/* Wave Surface */
.wave-surface {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    z-index: 3;
    opacity: 0.4;
}

.wave-svg {
    width: 200%;
    height: 80px;
    animation: waveRipple 8s linear infinite;
}

/* Shark Fin Silhouette */
.shark-fin-silhouette {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: finSway 4s ease-in-out infinite;
}

.shark-fin-svg {
    width: 120px;
    height: 80px;
    filter: drop-shadow(0 5px 15px rgba(192, 192, 192, 0.3));
}

/* Ripple Waves */
.ripple-waves {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.ripple {
    position: absolute;
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    animation: rippleExpand 3s ease-out infinite;
}

.ripple-1 { width: 60px; height: 30px; top: 0; left: -30px; animation-delay: 0s; }
.ripple-2 { width: 100px; height: 50px; top: -10px; left: -50px; animation-delay: 1s; }
.ripple-3 { width: 140px; height: 70px; top: -20px; left: -70px; animation-delay: 2s; }

/* Hero Content */
.hero-inner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding-top: 60px;
}

.hero-main-title {
    margin-bottom: 20px;
}

.hero-brand {
    display: block;
    font-size: 56px;
    color: #C0C0C0;
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 6px;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.4), 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
}

.hero-divider-line {
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    color: #F0F8FF;
    font-family: 'Comfortaa', cursive;
    letter-spacing: 3px;
    font-weight: 300;
}

.hero-description {
    font-size: 15px;
    color: rgba(240, 248, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-size: 28px;
    color: #C0C0C0;
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 1px;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(240, 248, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-shark-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #003366, #004488);
    color: #F0F8FF;
    border: 2px solid #C0C0C0;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', cursive;
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-shark-primary:hover {
    background: linear-gradient(135deg, #004488, #005599);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.5);
    color: #fff;
}

.btn-outline-shark {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #C0C0C0;
    border: 2px solid rgba(192, 192, 192, 0.5);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', cursive;
}

.btn-outline-shark:hover {
    border-color: #C0C0C0;
    background: rgba(192, 192, 192, 0.1);
    color: #F0F8FF;
    transform: translateY(-3px);
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 2px;
}

.section-title i {
    margin-right: 10px;
    font-size: 24px;
}

.section-subtitle {
    text-align: center;
    color: rgba(240, 248, 255, 0.6);
    font-size: 14px;
    margin-bottom: 40px;
    font-family: 'Comfortaa', cursive;
}

/* === SHARK GAMES SECTION (6 cards) === */
.shark-games {
    padding: 50px 0;
}

.shark-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.shark-game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.8), rgba(0, 17, 34, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
}

.shark-game-card:hover {
    border-color: rgba(192, 192, 192, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.4);
}

.shark-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 51, 102, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.shark-game-card:hover .shark-game-glow {
    opacity: 1;
}

.shark-game-icon {
    margin-bottom: 15px;
}

.shark-game-icon i {
    font-size: 40px;
    color: #C0C0C0;
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.3));
}

.shark-game-rating {
    margin-bottom: 12px;
}

.shark-game-rating i {
    color: #C0C0C0;
    font-size: 13px;
    margin: 0 2px;
}

.shark-game-card h3 {
    font-size: 18px;
    color: #F0F8FF;
    margin-bottom: 10px;
    font-family: 'Alfa Slab One', cursive;
}

.shark-game-card p {
    font-size: 13px;
    color: rgba(240, 248, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.shark-game-players {
    font-size: 12px;
    color: #C0C0C0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.shark-game-players i {
    font-size: 11px;
}

/* === OCEAN GRID SECTION (3x4) === */
.ocean-grid {
    padding: 50px 0;
}

.ocean-grid-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ocean-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ocean-grid-node {
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.6), rgba(0, 17, 34, 0.8));
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

.ocean-grid-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 51, 102, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ocean-grid-node:hover::before {
    opacity: 1;
}

.ocean-grid-node:hover {
    border-color: rgba(192, 192, 192, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.3);
}

.ocean-node-icon {
    margin-bottom: 10px;
}

.ocean-node-icon i {
    font-size: 28px;
    color: #C0C0C0;
    animation: bubbleFloat 4s ease-in-out infinite;
}

.ocean-node-label {
    font-size: 13px;
    color: #F0F8FF;
    font-weight: 600;
    display: block;
    font-family: 'Comfortaa', cursive;
}

/* === SHARK FEATURES SECTION === */
.shark-features {
    padding: 50px 0;
}

.shark-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.shark-feature-card {
    background: linear-gradient(180deg, rgba(0, 34, 68, 0.6), rgba(0, 17, 34, 0.8));
    border: 1px solid rgba(192, 192, 192, 0.12);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.shark-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #003366, #C0C0C0, #003366, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shark-feature-card:hover::after {
    opacity: 1;
}

.shark-feature-card:hover {
    border-color: rgba(192, 192, 192, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.3);
}

.shark-feature-icon {
    margin-bottom: 20px;
}

.fin-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.4), rgba(0, 34, 68, 0.6));
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: waveFloat 3s ease-in-out infinite;
}

.fin-icon i {
    font-size: 28px;
    color: #C0C0C0;
}

.shark-feature-card h3 {
    font-size: 16px;
    color: #F0F8FF;
    margin-bottom: 12px;
    font-family: 'Alfa Slab One', cursive;
}

.shark-feature-card p {
    font-size: 13px;
    color: rgba(240, 248, 255, 0.7);
    line-height: 1.7;
}

/* === OCEAN STATS SECTION === */
.ocean-stats {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.ocean-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #001122 0%, #002244 50%, #001122 100%);
    z-index: 0;
}

.depth-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 60% 70%, rgba(192, 192, 192, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 80% 20%, rgba(0, 51, 102, 0.2) 4px, transparent 4px),
        radial-gradient(circle at 40% 80%, rgba(192, 192, 192, 0.06) 2px, transparent 2px);
    animation: oceanShimmer 4s ease-in-out infinite;
}

.ocean-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ocean-stat-card {
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.7), rgba(0, 17, 34, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    position: relative;
    animation: depthPressure 4s ease-in-out infinite;
}

.ocean-stat-card:nth-child(2) { animation-delay: 1s; }
.ocean-stat-card:nth-child(3) { animation-delay: 2s; }
.ocean-stat-card:nth-child(4) { animation-delay: 3s; }

.stat-bubble-decoration {
    margin-bottom: 10px;
}

.stat-bubble-decoration i {
    font-size: 8px;
    color: rgba(192, 192, 192, 0.3);
    animation: bubbleFloat 3s ease-in-out infinite;
}

.stat-bubble-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-number {
    font-size: 36px;
    color: #C0C0C0;
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: rgba(240, 248, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Comfortaa', cursive;
}

/* === OCEAN PROMOTIONS SECTION === */
.ocean-promos {
    padding: 50px 0;
}

.ocean-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ocean-promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.8), rgba(0, 17, 34, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ocean-promo-card:hover {
    border-color: rgba(192, 192, 192, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.4);
}

.promo-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(0, 51, 102, 0.3) 0%, transparent 100%);
    opacity: 0.5;
}

.ocean-promo-inner {
    position: relative;
    padding: 30px 25px;
    text-align: center;
}

.promo-icon {
    margin-bottom: 15px;
}

.promo-icon i {
    font-size: 40px;
    color: #C0C0C0;
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.3));
}

.ocean-promo-inner h3 {
    font-size: 16px;
    color: #F0F8FF;
    margin-bottom: 12px;
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 0.5px;
}

.ocean-promo-inner p {
    font-size: 13px;
    color: rgba(240, 248, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(240, 248, 255, 0.5);
}

.promo-badge {
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Comfortaa', cursive;
}

.promo-badge.hot {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

.promo-badge.new {
    background: linear-gradient(135deg, #00aa44, #008833);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #C0C0C0, #999999);
    color: #001122;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #003366, #004488);
    color: #F0F8FF;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', cursive;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #004488, #005599);
    box-shadow: 0 0 15px rgba(0, 51, 102, 0.4);
    color: #fff;
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    margin: 50px -15px 0 -15px;
    overflow: hidden;
    text-align: center;
}

.footer-cta-ocean {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #001122 0%, #002244 30%, #003366 50%, #002244 70%, #001122 100%);
    z-index: 0;
}

.depth-particles-cta {
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(192, 192, 192, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 65%, rgba(192, 192, 192, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 45% 85%, rgba(0, 51, 102, 0.15) 4px, transparent 4px);
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-fin-decoration {
    margin-bottom: 20px;
    animation: finSway 4s ease-in-out infinite;
}

.cta-fin-svg {
    width: 80px;
    height: 60px;
    filter: drop-shadow(0 3px 10px rgba(192, 192, 192, 0.2));
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #C0C0C0;
    margin-bottom: 15px;
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 2px;
}

.footer-cta-inner p {
    font-size: 15px;
    color: rgba(240, 248, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    font-size: 14px;
    color: #C0C0C0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Comfortaa', cursive;
}

.cta-feature i {
    color: #C0C0C0;
}

.cta-main-btn {
    padding: 16px 50px;
    font-size: 16px;
}

/* === NEWS SECTION === */
.home-news-section {
    padding: 50px 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.home-news-placeholder {
    display: contents;
}

.article-card {
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.6), rgba(0, 17, 34, 0.8));
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.article-card:hover {
    border-color: rgba(192, 192, 192, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
    color: inherit;
}

.article-card-thumb {
    height: 180px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.08);
}

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    color: #F0F8FF;
    line-height: 1.5;
    font-family: 'Comfortaa', cursive;
}

.article-card-title a {
    color: #F0F8FF;
}

.article-card-title a:hover {
    color: #C0C0C0;
}

.article-card-meta {
    padding: 0 15px 8px;
    font-size: 12px;
    color: rgba(240, 248, 255, 0.5);
    display: flex;
    gap: 15px;
}

.article-card-meta i {
    margin-right: 5px;
    color: #003366;
}

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: rgba(240, 248, 255, 0.6);
    line-height: 1.6;
}

.article-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    color: #C0C0C0;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    color: #F0F8FF;
}

.article-card-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.article-card-more:hover i {
    transform: translateX(5px);
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    max-width: 200px;
    margin: 0 auto;
    font-family: 'Comfortaa', cursive;
}

.shark-view-more {
    color: #C0C0C0;
}

.shark-view-more:hover {
    border-color: #C0C0C0;
    background: rgba(192, 192, 192, 0.1);
    color: #F0F8FF;
}

.view-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

/* === CONTENT AREA === */
.content-area {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    padding: 30px 0;
}

.main-content {
    min-width: 0;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: rgba(240, 248, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #C0C0C0;
}

.breadcrumb a:hover {
    color: #F0F8FF;
}

.breadcrumb span {
    color: rgba(240, 248, 255, 0.4);
}

/* === ARTICLE GRID === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(240, 248, 255, 0.5);
}

/* === CATEGORY HEADER === */
.category-header {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.5), rgba(0, 17, 34, 0.7));
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 12px;
}

.category-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Alfa Slab One', cursive;
}

.category-title i {
    margin-right: 10px;
}

.category-desc {
    font-size: 14px;
    color: rgba(240, 248, 255, 0.6);
    line-height: 1.6;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(0, 51, 102, 0.2);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 20px;
    color: rgba(240, 248, 255, 0.6);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', cursive;
}

.provider-tab:hover {
    border-color: rgba(192, 192, 192, 0.3);
    color: #F0F8FF;
}

.provider-tab.active {
    background: linear-gradient(135deg, #003366, #004488);
    border-color: #C0C0C0;
    color: #F0F8FF;
}

/* === PAGINATION === */
.pagination {
    text-align: center;
    margin: 30px 0;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 8px;
    color: #C0C0C0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #003366, #004488);
    border-color: #C0C0C0;
    color: #F0F8FF;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.5), rgba(0, 17, 34, 0.7));
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 25px;
}

.article-title {
    font-size: 28px;
    color: #F0F8FF;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Alfa Slab One', cursive;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(240, 248, 255, 0.5);
}

.article-meta i {
    margin-right: 5px;
    color: #003366;
}

.article-meta a {
    color: #C0C0C0;
}

.article-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.article-featured-img img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 15px;
    color: rgba(240, 248, 255, 0.85);
    line-height: 1.9;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #C0C0C0;
    margin: 25px 0 15px;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
}

.article-content blockquote {
    border-left: 3px solid #003366;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-content a {
    color: #C0C0C0;
    text-decoration: underline;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    margin-top: 25px;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.article-tags > i {
    color: #C0C0C0;
}

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 51, 102, 0.2);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: rgba(240, 248, 255, 0.6);
}

.article-tags span a {
    color: rgba(240, 248, 255, 0.6);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.article-nav-prev a,
.article-nav-next a {
    color: #C0C0C0;
    font-size: 14px;
}

.article-nav-prev i,
.article-nav-next i {
    color: #C0C0C0;
    margin: 0 5px;
}

/* === RELATED POSTS === */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Alfa Slab One', cursive;
}

.related-posts-title i {
    margin-right: 10px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-item {
    display: block;
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.5), rgba(0, 17, 34, 0.7));
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    border-color: rgba(192, 192, 192, 0.3);
    transform: translateY(-3px);
}

.related-item-thumb {
    height: 120px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-item-thumb img {
    transform: scale(1.05);
}

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #F0F8FF;
    line-height: 1.4;
    font-family: 'Comfortaa', cursive;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.5), rgba(0, 17, 34, 0.7));
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 15px;
    padding: 35px;
}

.page-title {
    font-size: 28px;
    color: #F0F8FF;
    margin-bottom: 25px;
    font-family: 'Alfa Slab One', cursive;
}

.page-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.page-content {
    font-size: 15px;
    color: rgba(240, 248, 255, 0.85);
    line-height: 1.9;
}

.page-content p {
    margin-bottom: 15px;
}

.page-content h2,
.page-content h3 {
    color: #C0C0C0;
    margin: 25px 0 15px;
}

/* === ERROR PAGE === */
.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-shark {
    margin-bottom: 25px;
    animation: finSway 3s ease-in-out infinite;
}

.error-shark-svg {
    width: 120px;
    height: 80px;
}

.error-code {
    font-size: 80px;
    color: #C0C0C0;
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.3);
}

.error-title {
    font-size: 24px;
    color: #F0F8FF;
    margin-bottom: 15px;
    font-family: 'Alfa Slab One', cursive;
}

.error-desc {
    font-size: 15px;
    color: rgba(240, 248, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #003366, #004488);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    color: #F0F8FF;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: linear-gradient(135deg, #004488, #005599);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 51, 102, 0.4);
    color: #fff;
}

.sidebar-btn-facebook:hover {
    background: #1877f2;
}

.sidebar-btn-telegram:hover {
    background: #0088cc;
}

.sidebar-label {
    display: none;
}

.sidebar-btn[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: rgba(0, 17, 34, 0.9);
    border: 1px solid rgba(192, 192, 192, 0.2);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    color: #F0F8FF;
}

/* === SITE FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #001122 0%, #000a15 100%);
    border-top: 2px solid rgba(192, 192, 192, 0.15);
    padding: 50px 0 30px;
    margin-top: 0;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand-logo {
    margin-bottom: 15px;
}

.footer-brand-logo img {
    height: 45px;
    filter: brightness(1.1);
}

.footer-brand-text {
    font-size: 13px;
    color: rgba(240, 248, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #C0C0C0;
    border-radius: 50%;
    color: #C0C0C0;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 51, 102, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 50%;
    color: #C0C0C0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #003366;
    border-color: #C0C0C0;
    color: #F0F8FF;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 15px;
    color: #C0C0C0;
    margin-bottom: 18px;
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(240, 248, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #C0C0C0;
    padding-left: 5px;
}

/* === LICENSE BAR === */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-size: 14px;
    color: #C0C0C0;
    margin-bottom: 15px;
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 1px;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.license-item i {
    font-size: 24px;
    color: #C0C0C0;
}

.license-item span {
    font-size: 11px;
    color: rgba(240, 248, 255, 0.5);
    font-family: 'Comfortaa', cursive;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(240, 248, 255, 0.4);
    font-family: 'Comfortaa', cursive;
}
