/* Global Styles */
:root {
    --primary-color: #27af71;
    --secondary-color: #ff8c00; /* Orange */
    --background-color: #000000;
    --text-color: #ffffff;
    --accent-color: #1e1e1e;
    --gradient-primary: linear-gradient(135deg, #27af71 0%, #1a8755 100%);
    --gradient-secondary: linear-gradient(135deg, #ff8c00 0%, #e67e00 100%);
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    --card-bg: rgba(30, 30, 30, 0.7);
    --section-padding: 30px 0;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to bottom, var(--background-color), #111);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
		color: var(--background-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
		color: var(--background-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-tertiary {
    background-color: #cc0000;
    color: var(--text-color);
}

.btn-tertiary:hover {
    background-color: #ff0000;
    color: var(--text-color);
}

.btn-login {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn-signup:hover {
    background-color: #30c985;
		color: var(--background-color);
}

.btn-play {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 8px 16px;
    font-size: 14px;
}

.btn-play:hover {
    background-color: #ff9e2c;
		color: var(--background-color);
    transform: translateY(-2px);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--primary-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.main-menu {
    display: flex;
    list-style: none;
}

.main-menu li {
    margin: 0 15px;
}

.main-menu a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s, background-color 0.3s;
}

.main-menu a:hover:after {
    width: 100%;
    background-color: var(--secondary-color);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login, .btn-signup {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 24px;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle span {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span::before {
    content: '';
    top: -10px;
}

.mobile-menu-toggle span::after {
    content: '';
    bottom: -10px;
}

.mobile-menu-toggle.active span {
    background-color: transparent;
}

.mobile-menu-toggle.active span::before {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span::after {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.85) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -50px 50px -30px #000;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(39, 175, 113, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-primary);
    opacity: 0.7;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    color: white;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
    font-weight: 800;
    line-height: 1.2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    color: var(--secondary-color);
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-shadow: var(--text-shadow);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
    display: inline-block;
    padding-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1.2s ease;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.features {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 30, 30, 0.7) 100%);
    border-radius: 15px;
    padding: 25px;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.3s ease;
    border: 1px solid rgba(39, 175, 113, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-shadow: var(--text-shadow);
    display: inline-block;
    position: relative;
}

.features h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.features ul {
    list-style: none;
    margin-left: 10px;
}

.features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
    transition: transform 0.3s ease;
}

.features li:hover {
    transform: translateX(5px);
}

.features li:before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.5s ease;
}

.cta-buttons .btn {
    font-weight: 700;
    padding: 15px 30px;
    font-size: 1.1rem;
    min-width: 250px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-buttons .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.cta-buttons .btn-primary {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 175, 113, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(39, 175, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 175, 113, 0);
    }
}

/* Popular Games Section */
.popular-games {
    padding: 30px 0;
    background-color: rgba(15, 15, 15, 0.9);
}

.popular-games h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--primary-color), 0.3);
}

.game-image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.game-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.game-card:hover .game-image:before {
    opacity: 1;
}

.game-image img {
    width: 100%;
		height: 100%;
    transition: all 0.5s ease;
    transform: scale(1);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 15px 0 10px;
    transition: all 0.3s ease;
    padding: 0 15px;
}

.game-card:hover h3 {
    color: var(--secondary-color);
}

.game-card p {
    color: #cccccc;
    min-height: 40px;
    margin-bottom: 15px;
    padding: 0 15px;
}

.game-card .btn {
    margin: 0 15px 15px;
}

.see-all {
    text-align: center;
    margin-top: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 30px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.testimonial-card {
    padding: 25px;
    border-radius: 10px;
    background: var(--card-bg);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0f0f0;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.testimonial-card .quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: -20px;
    opacity: 0.3;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
    text-align: right;
}

.more-testimonials {
    text-align: center;
    margin-top: 20px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.footer-links h3,
.footer-payments h3,
.footer-support h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-links h3:after,
.footer-payments h3:after,
.footer-support h3:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--secondary-color);
}

.footer-links ul,
.footer-payments ul {
    list-style: none;
}

.footer-links li,
.footer-payments li {
    margin-bottom: 13px;
    font-size: 1.05rem;
}

.footer-links a {
    color: #cccccc;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-payments li {
    position: relative;
    padding-left: 25px;
    color: #cccccc;
}

@media (max-width: 1024px) {
    .footer-payments li {
        padding-left: 0;
    }
}

.footer-payments li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.footer-support p {
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 1.05rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.footer-bottom p:first-child {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Mobile Menu Animation */
@media (max-width: 1024px) {
    .main-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .main-menu.active {
        transform: translateX(0);
    }
    
    .main-menu li {
        margin: 10px 0;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 15px 3%;
    }

    .main-menu {
        gap: 10px;
    }
    
    .hero h1, .games-hero h1, .blog-hero h1, .forum-hero h1, .payments-hero h1, .promotions-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2, .games-hero h2, .blog-hero h2, .forum-hero h2, .payments-hero h2, .promotions-hero h2 {
        font-size: 1.4rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .features h3 {
        font-size: 1.2rem;
    }
    
    .features li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .game-card h3 {
        font-size: 1.2rem;
    }
    
    .game-card p {
        font-size: 0.9rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    section h3 {
        font-size: 1.3rem;
    }
    
    .testimonial-card .quote {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .games-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .features {
        padding: 15px;
    }
    
    .features li {
        font-size: 0.9rem;
        padding-left: 25px;
    }
    
    .features li:before {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    section h2 {
        font-size: 1.4rem;
    }
    
    .footer-links h3,
    .footer-payments h3,
    .footer-support h3 {
        font-size: 1.1rem;
    }
    
    .footer-links li,
    .footer-payments li,
    .footer-support p {
        font-size: 0.9rem;
    }
}



.games-category.alt-bg {
    background-color: rgba(15, 15, 15, 0.9);
}

.games-category h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.games-category h2 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.tournament-section {
    padding: 30px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
}

.tournament-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.tournament-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.tournament-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--primary-color), 0.3);
}

.tournament-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tournament-card p {
    color: #cccccc;
    margin-bottom: 20px;
}

.fast-payout-games {
    padding: 30px 0;
    background-color: rgba(15, 15, 15, 0.9);
}

.fast-payout-games h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.payout-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.payout-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payout-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--primary-color), 0.3);
}

.payout-card h3 {
    color: var(--secondary-color);
    margin: 15px 0 5px;
    font-size: 1.3rem;
}

.payout-card p {
    color: #cccccc;
    margin-bottom: 15px;
}

.cta-section {
    padding: 30px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

/* Responsive adjustments for Games page */
@media (max-width: 1024px) {
    .tournament-info,
    .payout-info {
        grid-template-columns: 1fr;
    }
    
    .games-category h2,
    .tournament-section h2,
    .fast-payout-games h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* Blog Page Specific Styles */
.blog-hero {
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -50px 50px -30px #000;
}

.blog-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.blog-hero h1, .blog-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    color: white;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
}

.blog-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-shadow: var(--text-shadow);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.share-win {
    padding: 20px 0;
    background-color: rgba(39, 175, 113, 0.2);
}

.share-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.share-banner h3 {
    font-size: 1.3rem;
    color: var(--text-color);
}

.testimonials-full {
    padding: 30px 0;
    background-color: rgba(15, 15, 15, 0.9);
}

.testimonials-full h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonial-grid-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card-large {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--primary-color);
}

.player-info h3 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.win-amount {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.game-played {
    background-color: rgba(39, 175, 113, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: bold;
}

.testimonial-content {
    padding: 25px 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #aaa;
    font-size: 0.9rem;
}

.payment-method i,
.verification i {
    color: var(--primary-color);
    margin-right: 5px;
}

.featured-games {
    padding: 30px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
}

.featured-games h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.featured-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.featured-game {
    display: flex;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.featured-game:hover {
    transform: translateY(-5px);
}

.featured-game .game-image {
    width: 40%;
}

.featured-game .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-game .game-info {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-game .game-info h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.featured-game .game-info p {
    color: #cccccc;
    margin-bottom: 15px;
}

.blog-cta {
    padding: 50px 0;
    text-align: center;
    background-color: rgba(15, 15, 15, 0.9);
}

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

/* Responsive adjustments for Blog page */
@media (max-width: 1024px) {
    .share-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .featured-game {
        flex-direction: column;
    }
    
    .featured-game .game-image,
    .featured-game .game-info {
        width: 100%;
    }
    
    .featured-game .game-image {
        height: 200px;
    }
    
    .featured-game .game-info {
        text-align: center;
    }
    
    .blog-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Forum Page Specific Styles */
.forum-hero {
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -50px 50px -30px #000;
}

.forum-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.forum-hero h1, .forum-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    color: white;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
}

.forum-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-shadow: var(--text-shadow);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.casino-comparison {
    padding: 30px 0;
    background-color: rgba(15, 15, 15, 0.9);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.comparison-table th {
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    border-top-left-radius: 10px;
}

.comparison-table th:last-child {
    border-top-right-radius: 10px;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.comparison-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.comparison-table td.highlight {
    color: var(--primary-color);
    font-weight: bold;
    position: relative;
}

.comparison-table td.highlight::after {
    content: '✓';
    position: absolute;
    right: 15px;
    color: var(--primary-color);
}

.comparison-summary {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.comparison-summary h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.comparison-summary ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.comparison-summary li {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.player-discussion {
    padding: 30px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
}

.player-discussion h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.forum-posts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.forum-post {
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.forum-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--primary-color);
}

.user-avatar i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.user-info h3 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.post-date {
    color: #aaa;
    font-size: 0.9rem;
}

.post-content {
    padding: 20px;
}

.post-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.post-footer {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: flex-end;
}

.post-reactions span {
    margin-left: 15px;
    color: #aaa;
}

.post-reactions i {
    color: var(--primary-color);
    margin-right: 5px;
}

.forum-cta {
    padding: 50px 0;
    text-align: center;
    background-color: rgba(15, 15, 15, 0.9);
}

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

/* Responsive adjustments for Forum page */
@media (max-width: 1024px) {
    .comparison-summary ul {
        grid-template-columns: 1fr;
    }
    
    .forum-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .forum-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .forum-hero h1 {
        font-size: 2.5rem;
    }
    
    .forum-hero h2 {
        font-size: 1.2rem;
    }
}

/* Payments Page Specific Styles */
.payments-hero {
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -50px 50px -30px #000;
}

.payments-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.payments-hero h1, .payments-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    color: white;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
}

.payments-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-shadow: var(--text-shadow);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.payment-methods {
    padding: 30px 0;
    background-color: rgba(15, 15, 15, 0.9);
}

.payment-methods-intro {
    text-align: center;
    margin-bottom: 40px;
}

.payment-methods-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.payment-methods-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

.payment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.payment-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
}

.payment-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.payment-info {
    padding: 20px;
}

.payment-info h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.payment-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.payment-info li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.payment-info li span {
    color: var(--text-color);
    font-weight: bold;
    margin-right: 5px;
}

.payment-info .btn {
    width: 100%;
    text-align: center;
}

.payment-tip {
    background-color: rgba(39, 175, 113, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
}

.tip-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tip-content p {
    color: #e0e0e0;
    font-size: 1.05rem;
}

.payment-steps {
    padding: 30px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
}

.payment-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: bold;
}

.step-content {
    padding: 20px;
    flex-grow: 1;
}

.step-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: #e0e0e0;
}

.payment-faq {
    padding: 30px 0;
    background-color: rgba(15, 15, 15, 0.9);
}

.payment-faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #e0e0e0;
    font-size: 1.05rem;
}

.payment-cta {
    padding: 30px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    background-size: cover;
    background-position: center;
}

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

/* Responsive adjustments for Payments page */
@media (max-width: 1024px) {
    .payment-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .step-card {
        flex-direction: column;
    }
    
    .step-number {
        width: 100%;
        padding: 10px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .payment-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Promotions Page Specific Styles */
.promotions-hero {
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -50px 50px -30px #000;
}

.promotions-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.promotions-hero h1, .promotions-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    color: white;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
}

.promotions-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-shadow: var(--text-shadow);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.main-bonus {
    padding: 30px 0;
    background-color: rgba(15, 15, 15, 0.9);
}

.bonus-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-card.featured {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--primary-color);
}

.bonus-header h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 0;
}

.bonus-tag {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bonus-code {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.bonus-content {
    padding: 25px 20px;
}

.bonus-details {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.bonus-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 60px;
    text-align: center;
}

.bonus-value {
    display: flex;
    flex-direction: column;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1.2;
}

.bonus-game,
.bonus-extra {
    font-size: 1rem;
    color: var(--primary-color);
}

.bonus-description {
    margin-bottom: 15px;
}

.bonus-description p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.bonus-terms {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.bonus-terms p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

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

.btn.animated {
    animation: pulse 2s infinite;
    transform-origin: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.welcome-bonus {
    padding: 30px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
}

.welcome-bonus h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.bonus-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.regular-promotions {
    padding: 30px 0;
    background-color: rgba(15, 15, 15, 0.9);
}

.regular-promotions h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--primary-color), 0.3);
}

.promo-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.3);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-card:hover .promo-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.promo-content {
    padding: 0;
    text-align: center;
    width: 100%;
}

.promo-content h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.promo-content p {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.vip-program {
    padding: 30px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    text-align: center;
}

.vip-program h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.vip-levels {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.vip-level {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    width: 180px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-level:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--primary-color), 0.3);
}

.level-name {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

.level-benefits {
    list-style: none;
    text-align: left;
}

.level-benefits li {
    margin-bottom: 8px;
    color: #e0e0e0;
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.level-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.vip-cta {
    margin-top: 30px;
}

.bonus-terms {
    padding: 30px 0;
    background-color: rgba(15, 15, 15, 0.9);
}

.bonus-terms h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.terms-content {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--box-shadow);
}

.terms-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.terms-content ul {
    list-style: disc;
    padding-left: 20px;
}

.terms-content li {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.promo-cta {
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    background-size: cover;
    background-position: center;
}

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

/* Responsive adjustments for Promotions page */
@media (max-width: 1024px) {
    .vip-levels {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .bonus-details {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .vip-level {
        width: 45%;
    }
    
    .promo-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .vip-level {
        width: 100%;
        max-width: 250px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Section Titles */
section h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-shadow: var(--text-shadow);
    position: relative;
    display: inline-block;
}

section h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-shadow: var(--text-shadow);
}

/* Enhanced Card Styles */
.game-card, .tournament-card, .testimonial-card, .payment-card, .payout-card, .featured-game, .bonus-card, .promo-card, .vip-level, .forum-post, .step-card, .faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.game-card:hover, .tournament-card:hover, .payment-card:hover, .payout-card:hover, .featured-game:hover, .bonus-card:hover, .promo-card:hover, .vip-level:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(var(--primary-color), 0.3);
}

/* Hero Sections Enhanced */
.hero, .games-hero, .blog-hero, .forum-hero, .payments-hero, .promotions-hero {
    padding: 60px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -50px 50px -30px #000;
}

.hero:before, .games-hero:before, .blog-hero:before, .forum-hero:before, .payments-hero:before, .promotions-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.hero h1, .games-hero h1, .blog-hero h1, .forum-hero h1, .payments-hero h1, .promotions-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    color: white;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
}

.hero h2, .games-hero h2, .blog-hero h2, .forum-hero h2, .payments-hero h2, .promotions-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-shadow: var(--text-shadow);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero p, .games-hero p, .blog-hero p, .forum-hero p, .payments-hero p, .promotions-hero p {
    font-size: 1.1rem;
    max-width: 800px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1.2s ease;
}

/* Comparison Table Enhanced */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.comparison-table th {
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.comparison-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.comparison-table td.highlight {
    color: var(--primary-color);
    font-weight: bold;
    position: relative;
}

.comparison-table td.highlight::after {
    content: '✓';
    position: absolute;
    right: 15px;
    color: var(--primary-color);
}

/* Footer Enhanced */
footer {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.footer-links h3,
.footer-payments h3,
.footer-support h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-links h3:after,
.footer-payments h3:after,
.footer-support h3:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--secondary-color);
}

.footer-links ul,
.footer-payments ul {
    list-style: none;
}

.footer-links li,
.footer-payments li {
    margin-bottom: 13px;
    font-size: 1.05rem;
}

.footer-links a {
    color: #cccccc;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}
.footer-support p {
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 1.05rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.footer-bottom p:first-child {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Game Cards Enhanced */
.game-image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.game-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.game-card:hover .game-image:before {
    opacity: 1;
}

.game-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 15px 0 10px;
    transition: all 0.3s ease;
    padding: 0 15px;
}

.game-card:hover h3 {
    color: var(--secondary-color);
}

.game-card p {
    color: #cccccc;
    min-height: 40px;
    margin-bottom: 15px;
    padding: 0 15px;
}

/* Enhanced Bonus Terms */
.bonus-terms {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.bonus-terms p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Testimonial Cards Enhanced */
.testimonial-card {
    padding: 25px;
    border-radius: 10px;
    background: var(--card-bg);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0f0f0;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.testimonial-card .quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: -20px;
    opacity: 0.3;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
    text-align: right;
}

/* Mobile Menu Animation */
@media (max-width: 1024px) {
    .main-menu {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .main-menu.active {
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hero h1, .games-hero h1, .blog-hero h1, .forum-hero h1, .payments-hero h1, .promotions-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero h1 span {
        display: inline;
    }
    
    .hero h2, .games-hero h2, .blog-hero h2, .forum-hero h2, .payments-hero h2, .promotions-hero h2 {
        font-size: 1.1rem;
        padding-bottom: 5px;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .features {
        padding: 12px;
    }
    
    .features h3 {
        font-size: 1.1rem;
    }
    
    .features li {
        font-size: 0.85rem;
        padding-left: 22px;
    }
    
    .features li:before {
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .auth-buttons .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
} 