/* ===============================
   FISHING PAGE STYLES
   =============================== */

/* Global Variables */
:root {
    --primary-color: #e8c742;
    --secondary-color: #f4d03f;
    --accent-color: #0ea5e9;
    --ocean-blue: #0369a1;
    --deep-blue: #1e3a8a;
    --sea-green: #065f46;
    --light-blue: #60a5fa;
    --turquoise: #06b6d4;
    --coral: #f97316;
    --gold: #fbbf24;
    --dark-bg: #0a0a0a;
    --darker-bg: #1a1a1a;
    --light-text: #ffffff;
    --muted-text: #cccccc;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(14, 165, 233, 0.3);
    --ocean-gradient: linear-gradient(135deg, #0369a1 0%, #0ea5e9 50%, #60a5fa 100%);
    --wave-animation: wave 3s ease-in-out infinite;
}

/* ===============================
   PAGE HEADER
   =============================== */

.page-header {
    background: 
        linear-gradient(135deg, var(--dark-bg) 0%, var(--deep-blue) 50%, var(--ocean-blue) 100%),
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 50 Q 30 30 50 50 Q 70 70 90 50" stroke="%2306b6d4" stroke-width="2" fill="none" opacity="0.3"/><circle cx="20" cy="60" r="3" fill="%230ea5e9" opacity="0.4"/><circle cx="80" cy="40" r="4" fill="%2360a5fa" opacity="0.3"/><path d="M15 30 Q 25 20 35 30" stroke="%2306b6d4" stroke-width="1" fill="none" opacity="0.2"/></svg>');
    background-size: 120px 120px;
    animation: floatFish 20s linear infinite;
}

@keyframes floatFish {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(50px) translateY(-30px); }
    100% { transform: translateX(100px) translateY(0); }
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    margin-bottom: 2rem;
    color: var(--muted-text);
    font-size: 1rem;
}

.page-breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: var(--light-text);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--muted-text);
}

.breadcrumb-current {
    color: var(--accent-color);
    font-weight: 600;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-title-icon {
    font-size: 3.5rem;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--muted-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===============================
   FISHING STATS SECTION
   =============================== */

.fishing-stats {
    padding: 4rem 0;
    background: var(--ocean-gradient);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ===============================
   FEATURED GAMES SECTION
   =============================== */

.featured-games {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(96, 165, 250, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 25px 50px var(--shadow-color);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card.featured {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

.game-card.featured::after {
    content: '🌟 FEATURED';
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--accent-color), var(--light-blue));
    color: var(--light-text);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 3;
}

.game-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.game-info p {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.game-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.play-btn, .demo-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    cursor: pointer;
    border: none;
}

.play-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--light-blue));
    color: var(--light-text);
}

.demo-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
}

.play-btn:hover, .demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

.game-details {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.game-stats .stat {
    text-align: center;
}

.game-stats .stat-label {
    font-size: 0.75rem;
    color: var(--muted-text);
    display: block;
    margin-bottom: 0.25rem;
}

.game-stats .stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.tag.hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: #ef4444;
    animation: pulse 2s infinite;
}

.tag.new {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

.tag.multiplayer {
    background: linear-gradient(135deg, var(--sea-green), #059669);
    border-color: var(--sea-green);
}

.tag.hd {
    background: linear-gradient(135deg, var(--turquoise), #0891b2);
    border-color: var(--turquoise);
}

.tag.jackpot {
    background: linear-gradient(135deg, var(--coral), #ea580c);
    border-color: var(--coral);
    animation: glow 2s ease-in-out infinite alternate;
}

.tag.bonus {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-color: #8b5cf6;
}

.tag.tournament {
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: var(--dark-bg);
    border-color: var(--gold);
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(249, 115, 22, 0.5); }
    to { box-shadow: 0 0 20px rgba(249, 115, 22, 0.8), 0 0 30px rgba(249, 115, 22, 0.4); }
}

/* ===============================
   FISH TYPES SECTION
   =============================== */

.fish-types {
    padding: 4rem 0;
    background: var(--ocean-gradient);
}

.fish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fish-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fish-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fish-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
}

.fish-card:hover::before {
    opacity: 1;
}

.fish-card.special {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.3);
}

.fish-card.special::after {
    content: '👑 SPECIAL';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
}

.fish-image {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.fish-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: swim 4s ease-in-out infinite;
}

@keyframes swim {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(10px) rotate(5deg); }
    50% { transform: translateX(0) rotate(0deg); }
    75% { transform: translateX(-10px) rotate(-5deg); }
}

.fish-info {
    position: relative;
    z-index: 1;
}

.fish-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.fish-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.fish-payout {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payout-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.payout-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===============================
   GAME ROOMS SECTION
   =============================== */

.game-rooms {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(96, 165, 250, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.room-card:hover::before {
    opacity: 1;
}

.room-card.vip {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

.room-card.vip::after {
    content: '💎 VIP';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.room-card.tournament {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.2);
}

.room-card.tournament::after {
    content: '🏆 TOURNAMENT';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--light-text);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.room-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.room-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(96, 165, 250, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(14, 165, 233, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.room-info {
    flex: 1;
}

.room-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.room-info p {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.room-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    color: #10b981;
}

.room-card.tournament .status-dot {
    background: #ef4444;
}

.room-card.tournament .status-text {
    color: #ef4444;
}

.room-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.room-stats .stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.room-stats .stat-label {
    font-size: 0.75rem;
    color: var(--muted-text);
    display: block;
    margin-bottom: 0.5rem;
}

.room-stats .stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.room-actions {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.join-btn, .watch-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.join-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--light-blue));
    color: var(--light-text);
}

.watch-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
}

.join-btn:hover, .watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

/* ===============================
   FISHING TIPS SECTION
   =============================== */

.fishing-tips {
    padding: 4rem 0;
    background: var(--ocean-gradient);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
}

.tip-card:hover::before {
    opacity: 1;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.tip-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tip-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===============================
   FISHING TOURNAMENTS SECTION
   =============================== */

.fishing-tournaments {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tournament-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(96, 165, 250, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.tournament-card:hover::before {
    opacity: 1;
}

.tournament-card.active {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
}

.tournament-card.upcoming {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.3);
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.tournament-status {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.active {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--light-text);
    animation: pulse 2s infinite;
}

.status-badge.upcoming {
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: var(--dark-bg);
}

.tournament-time {
    font-size: 0.9rem;
    color: var(--muted-text);
    font-weight: 600;
}

.tournament-info {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.tournament-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.tournament-info p {
    color: var(--muted-text);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.tournament-prize {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.prize-label {
    font-size: 1rem;
    color: var(--muted-text);
    font-weight: 600;
}

.prize-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tournament-leaderboard {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.tournament-leaderboard h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-item .rank {
    font-weight: 800;
    color: var(--gold);
    font-size: 1.1rem;
    width: 30px;
    text-align: center;
}

.leaderboard-item .player {
    flex: 1;
    color: var(--light-text);
    font-weight: 600;
    margin-left: 1rem;
}

.leaderboard-item .score {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.tournament-details {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.tournament-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.tournament-details ul {
    list-style: none;
    padding: 0;
}

.tournament-details li {
    padding: 0.5rem 0;
    color: var(--muted-text);
    font-size: 0.9rem;
}

.tournament-actions {
    position: relative;
    z-index: 2;
}

.join-tournament-btn, .register-tournament-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.join-tournament-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--light-text);
}

.register-tournament-btn {
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: var(--dark-bg);
}

.join-tournament-btn:hover, .register-tournament-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
}

.register-tournament-btn:hover {
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.4);
}

/* ===============================
   SECTION TITLE STYLES
   =============================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-icon {
    font-size: 3rem;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

/* ===============================
   MOBILE BOTTOM NAVIGATION
   =============================== */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--muted-text);
    font-size: 0.7rem;
    font-weight: 500;
    min-width: 60px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    background: rgba(14, 165, 233, 0.2);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.mobile-bottom-nav .nav-icon {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.mobile-bottom-nav .nav-icon img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Tablet */
@media (max-width: 1024px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .fish-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .tournaments-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    
    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-title-icon {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .title-icon {
        font-size: 2rem;
    }
    
    .fishing-stats {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .featured-games {
        padding: 3rem 0;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        max-width: 100%;
    }
    
    .game-image {
        height: 200px;
    }
    
    .game-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .game-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .fish-types {
        padding: 3rem 0;
    }
    
    .fish-grid {
        grid-template-columns: 1fr;
    }
    
    .fish-card {
        padding: 1.5rem;
    }
    
    .fish-icon {
        font-size: 3rem;
    }
    
    .game-rooms {
        padding: 3rem 0;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .room-card {
        padding: 1.5rem;
    }
    
    .room-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .room-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .fishing-tips {
        padding: 3rem 0;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-card {
        padding: 1.5rem;
    }
    
    .tip-icon {
        font-size: 2.5rem;
    }
    
    .tip-card h3 {
        font-size: 1.3rem;
    }
    
    .fishing-tournaments {
        padding: 3rem 0;
    }
    
    .tournaments-grid {
        grid-template-columns: 1fr;
    }
    
    .tournament-card {
        padding: 1.5rem;
    }
    
    .tournament-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .tournament-info h3 {
        font-size: 1.5rem;
    }
    
    .leaderboard-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .leaderboard-item .player {
        margin-left: 0;
    }
    
    .tournament-details {
        text-align: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .title-icon {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .game-details {
        padding: 1.5rem;
    }
    
    .game-tags {
        justify-content: center;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .fish-card {
        padding: 1.25rem;
    }
    
    .fish-icon {
        font-size: 2.5rem;
    }
    
    .fish-info h3 {
        font-size: 1.3rem;
    }
    
    .room-card {
        padding: 1.25rem;
    }
    
    .room-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .room-info h3 {
        font-size: 1.3rem;
    }
    
    .room-stats {
        grid-template-columns: 1fr;
    }
    
    .tip-card {
        padding: 1.25rem;
    }
    
    .tip-icon {
        font-size: 2rem;
    }
    
    .tip-card h3 {
        font-size: 1.2rem;
    }
    
    .tournament-card {
        padding: 1.25rem;
    }
    
    .tournament-info h3 {
        font-size: 1.3rem;
    }
    
    .prize-value {
        font-size: 1.3rem;
    }
    
    .leaderboard-item {
        padding: 0.5rem;
    }
    
    .tournament-details ul {
        text-align: left;
    }
    
    .join-tournament-btn, .register-tournament-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Landscape orientation fixes for mobile */
@media (orientation: landscape) and (max-height: 500px) {
    .mobile-bottom-nav {
        padding: 0.4rem 0;
    }
    
    .mobile-bottom-nav .nav-item {
        font-size: 0.6rem;
        padding: 0.3rem;
    }
    
    .mobile-bottom-nav .nav-icon {
        font-size: 1rem;
    }
    
    body {
        padding-bottom: 60px;
    }
}

/* ===============================
   UTILITIES
   =============================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--light-blue));
    color: var(--light-text);
}

.btn-outline {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(96, 165, 250, 0.05));
    border: 2px solid rgba(14, 165, 233, 0.3);
    color: var(--accent-color);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-top: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-color), var(--light-blue));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--accent-color));
}

/* Selection Styles */
::selection {
    background: var(--accent-color);
    color: var(--light-text);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--light-text);
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .mobile-bottom-nav,
    .game-actions,
    .room-actions,
    .tournament-actions {
        display: none !important;
    }
    
    .game-card,
    .room-card,
    .tip-card,
    .tournament-card {
        break-inside: avoid;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .fish-icon,
    .stat-icon,
    .room-icon,
    .tip-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --border-color: rgba(255, 255, 255, 0.15);
        --shadow-color: rgba(14, 165, 233, 0.4);
    }
}