* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f1419);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Running Line */
.running-line {
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    color: #000;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    font-weight: 500;
    font-size: 14px;
}

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

.running-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: max-content;
}

.winner-announcement {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6b6b;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    color: #ff6b6b;
}

.logo img {
    width: auto;
    height: 40px;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transform: translateY(-2px);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.btn-tertiary {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    color: #333;
    box-shadow: 0 4px 15px rgba(254, 202, 87, 0.3);
}

.btn-login {
    background: linear-gradient(45deg, #45b7d1, #96ceb4);
    color: white;
}

.btn-register {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-play {
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	color: white;
	margin-top: 10px;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-play:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-demo {
	background: linear-gradient(45deg, #4ecdc4, #45b7d1);
	color: white;
	box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-demo:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 107, 107, 0.5); }
    to { text-shadow: 0 0 30px rgba(78, 205, 196, 0.8); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
    animation-delay: -2s;
}

.feature-card:nth-child(3) {
    animation-delay: -4s;
}

.feature-card:nth-child(4) {
    animation-delay: -6s;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

/* Game Categories */
.game-categories {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #feca57);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-10px) rotateY(10deg);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

/** Special Offers Section */
.special-offers {
    padding: 70px 0 60px 0;
    background: linear-gradient(135deg, rgba(254,202,87,0.08), rgba(78,205,196,0.08));
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.offer-card {
    background: linear-gradient(120deg, rgba(255,107,107,0.10), rgba(78,205,196,0.10));
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(78,205,196,0.10), 0 1.5px 6px rgba(255,107,107,0.08);
    padding: 36px 28px 32px 28px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(.4,1.3,.6,1);
    position: relative;
    overflow: hidden;
}

.offer-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 14px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-card p {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 22px;
    opacity: 0.92;
}

.offer-card .btn {
    margin-top: 8px;
    min-width: 120px;
    font-size: 1rem;
}

.offer-card:nth-child(1) {
    border-color: #ff6b6b;
    box-shadow: 0 8px 32px rgba(255,107,107,0.13);
}
.offer-card:nth-child(2) {
    border-color: #4ecdc4;
    box-shadow: 0 8px 32px rgba(78,205,196,0.13);
}
.offer-card:nth-child(3) {
    border-color: #feca57;
    box-shadow: 0 8px 32px rgba(254,202,87,0.13);
}

.games-section, .winner-stories, .why-gacor108, .payment-methods, .payment-tips, .payment-faq,
.welcome-bonus, .vip-program, .holiday-specials {
	padding: 40px 0;
}

.terms-content {
    background: linear-gradient(120deg, #232946 0%, #16161a 100%);
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(78,205,196,0.10), 0 1.5px 6px rgba(255,107,107,0.08);
    padding: 40px 32px 32px 32px;
    margin: 40px auto 0 auto;
    max-width: 700px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.terms-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #feca57;
    letter-spacing: 1px;
    text-align: center;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 24px;
}

.terms-item {
    background: rgba(36, 37, 42, 0.7);
    border-radius: 12px;
    padding: 22px 20px 18px 20px;
    box-shadow: 0 2px 8px rgba(78,205,196,0.08);
    color: #fff;
    text-align: left;
    position: relative;
}

.terms-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff9ff3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-item p {
    font-size: 1rem;
    color: #feca57;
    margin: 0;
    font-weight: 500;
}

.terms-disclaimer {
    background: rgba(36, 37, 42, 0.6);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 0.98rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-disclaimer i {
    color: #4ecdc4;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .terms-content {
        padding: 24px 8px 18px 8px;
    }
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .terms-item {
        padding: 16px 10px 12px 10px;
    }
}


.vip-cta {
    background: linear-gradient(120deg, #232946 0%, #4ecdc4 100%);
    padding: 40px 0 32px 0;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(78,205,196,0.10), 0 1.5px 6px rgba(254,202,87,0.10);
    margin: 40px auto 0 auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.vip-cta p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.vip-cta .btn {
    background: linear-gradient(90deg, #feca57 0%, #ff9ff3 100%);
    color: #232946;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(254,202,87,0.18);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-shadow: none;
    margin-top: 8px;
    display: inline-block;
    cursor: pointer;
}

.vip-cta .btn:hover {
    background: linear-gradient(90deg, #ff9ff3 0%, #feca57 100%);
    color: #232946;
    transform: translateY(-2px) scale(1.04);
}


.offer-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(78,205,196,0.18), 0 2px 8px rgba(255,107,107,0.10);
    z-index: 2;
    border-color: #fff;
}

@media (max-width: 900px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .special-offers {
        padding: 50px 0 40px 0;
    }
    .offer-card {
        padding: 28px 16px 24px 16px;
    }
}

.features-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.feature-compare-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(78,205,196,0.07));
    border-radius: 18px;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 6px 24px rgba(78,205,196,0.10), 0 1.5px 6px rgba(255,107,107,0.08);
    border: 1.5px solid rgba(254,202,87,0.13);
    text-align: left;
    position: relative;
    transition: box-shadow 0.3s, transform 0.2s;
}

.feature-compare-card:hover {
    box-shadow: 0 12px 36px rgba(78,205,196,0.16), 0 3px 12px rgba(255,107,107,0.10);
    transform: translateY(-6px) scale(1.02);
    border-color: #feca57;
}

.feature-compare-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ff6b6b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-item {
    background: rgba(0,0,0,0.13);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 500;
}

.feature-compare-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 18px;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    display: block;
}

@media (max-width: 700px) {
    .features-comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-compare-card {
        padding: 20px 10px 16px 10px;
    }
    .feature-compare-card img {
        height: 60px;
    }
}


.category-card img {
    width: 100%;
    height: 200px;
		margin-top: 10px;
    object-fit: cover;
    border-radius: 20px;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.games-count {
    background: rgba(255, 107, 107, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #feca57;
}

/* Top Games */
.top-games {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.game-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.3);
}

.game-card img {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #feca57);
    border-radius: 20px 20px 0 0;
}

.game-info, .game-overlay {
    padding: 20px;
}

.game-info h3, .game-overlay h3 {
    color: #ff6b6b;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.game-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.testimonial-author {
    color: #feca57;
    font-weight: 600;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 50px 0 20px;
    border-top: 2px solid #ff6b6b;
}

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

.footer-section h3, .footer-section h4 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4ecdc4;
}

.payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-icons i, .payment-icons span {
    font-size: 1.5rem;
    color: #4ecdc4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fab-register {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
}

.fab-login {
    background: linear-gradient(45deg, #45b7d1, #96ceb4);
    color: white;
}

.fab-bonus {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    color: #333;
    animation: pulse 2s infinite;
}

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

.fab-btn:hover {
    transform: translateX(-10px) scale(1.1);
}

/* Page-specific styles */
.games-hero, .blog-hero, .forum-hero, .payments-hero, .bonuses-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

.games-hero h1, .blog-hero h1, .forum-hero h1, .payments-hero h1, .bonuses-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-hero h2, .blog-hero h2, .forum-hero h2, .payments-hero h2, .bonuses-hero h2 {
    color: #feca57;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Game Filters */
.game-filters {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-color: transparent;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.story-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.trending-section {
	padding: 40px 0;
}

.player-avatar {
    font-size: 3rem;
    color: #4ecdc4;
}

.player-info h3 {
    color: #ff6b6b;
    margin-bottom: 5px;
}

.win-amount {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.story-content {
    padding: 20px;
}

.story-content img {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 10px;
    margin-bottom: 15px;
}

.story-details {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #4ecdc4;
}

/* Trending Games */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.trending-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trending-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(78, 205, 196, 0.2);
}

.trending-card img {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    backdrop-filter: blur(10px);
}

.comparison-table th {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 700;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table td.winner {
    background: rgba(255, 107, 107, 0.2);
    color: #feca57;
    font-weight: 700;
}

.comparison-table th.winner {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    color: #333;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.advantage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ff6b6b;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card img {
    width: 100%;
    height: 150px;
    background: linear-gradient(45deg, #4ecdc4, #feca57);
    border-radius: 10px;
    margin: 15px 0;
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.payment-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.payment-card.featured {
    border: 2px solid #ff6b6b;
    transform: scale(1.05);
}

.payment-card:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.payment-logo {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.5rem;
}

.payment-details {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-details span {
    background: rgba(78, 205, 196, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.payment-card img {
	display: block;
	margin: 15px auto;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #45b7d1, #96ceb4);
    border-radius: 10px;
}

.payment-security {
    padding: 60px 0;
    margin: 60px 0 0 0;
}

.payment-security .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.security-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.security-text {
    flex: 1 1 350px;
    min-width: 300px;
}

.security-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.security-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.security-text ul li {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-text ul li i {
    color: #4ecdc4;
    font-size: 1.1em;
}

.security-text .btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    color: #fff;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(78, 205, 196, 0.15);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.security-text .btn:hover {
    background: linear-gradient(90deg, #4ecdc4, #ff6b6b);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.18);
    transform: translateY(-2px) scale(1.04);
}

.security-image {
    flex: 1 1 300px;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(34, 34, 59, 0.10);
    background: linear-gradient(120deg, #feca57 0%, #ff9ff3 100%);
    object-fit: cover;
    aspect-ratio: 4/3;
}


.payment-faq {
    background: #23233b;
    padding: 60px 0 40px 0;
    border-radius: 24px;
    margin: 60px 0 0 0;
    box-shadow: 0 4px 32px rgba(34, 34, 59, 0.18);
}

.payment-faq .container {
    max-width: 900px;
    margin: 0 auto;
}

.payment-faq .section-title {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
}

.faq-item {
    background: #29294a;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(34, 34, 59, 0.12);
    padding: 28px 32px 22px 32px;
    transition: box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 8px 32px rgba(78, 205, 196, 0.18);
    background: #23233b;
}

.faq-question {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-question i {
    color: #4ecdc4;
    font-size: 1.2em;
}

.faq-answer {
    color: #e0e0f0;
    font-size: 1.05rem;
    line-height: 1.6;
    padding-left: 32px;
    position: relative;
}

.faq-answer:before {
    content: '';
    display: block;
    position: absolute;
    left: 12px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #ff6b6b;
    border-radius: 50%;
}

@media (max-width: 700px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .faq-item {
        padding: 22px 16px 16px 16px;
    }
    .faq-answer {
        padding-left: 20px;
    }
}


@media (max-width: 900px) {
    .security-content {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }
    .security-image, .security-text {
        min-width: 0;
        width: 100%;
    }
    .security-image img {
        margin: 0 auto;
    }
}



/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.step-number {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content img {
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    border-radius: 10px;
    margin-top: 10px;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78, 205, 196, 0.2);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4ecdc4;
}

.tip-card img {
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 10px;
    margin-top: 15px;
}

/* Welcome Bonus Section - Dark BG, Bright Text */
.welcome-bonus {
    background: linear-gradient(120deg, #232946 0%, #16161a 100%);
    padding: 60px 0 40px 0;
}

.welcome-card {
    background: linear-gradient(135deg, rgba(36, 37, 42, 0.95), rgba(78, 205, 196, 0.08));
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(78,205,196,0.12);
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(254,202,87,0.12);
}

.welcome-content {
    text-align: center;
    color: #fff;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff9ff3 0%, #feca57 100%);
    color: #232946;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    padding: 6px 18px;
    margin-bottom: 18px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(254,202,87,0.12);
}

.bonus-highlights {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 28px 0 18px 0;
}

.bonus-item {
    background: rgba(36, 37, 42, 0.7);
    border-radius: 10px;
    padding: 18px 22px;
    color: #feca57;
    box-shadow: 0 2px 8px rgba(78,205,196,0.08);
    min-width: 90px;
}

.bonus-item h3 {
    font-size: 2rem;
    margin: 0 0 6px 0;
    color: #ff9ff3;
    font-weight: 800;
    letter-spacing: 1px;
}

.bonus-item p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.bonus-details {
    background: rgba(36, 37, 42, 0.6);
    border-radius: 10px;
    padding: 18px 20px;
    margin: 18px 0 22px 0;
    color: #fff;
    text-align: left;
    display: inline-block;
}

.bonus-details h3 {
    color: #feca57;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.bonus-details ul {
    margin: 0;
    padding-left: 20px;
}

.bonus-details li {
    margin-bottom: 6px;
    color: #fff;
    font-size: 1rem;
}

.welcome-content img {
    width: 100%;
    height: 110px;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    border-radius: 10px;
    margin: 18px 0 18px 0;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(254,202,87,0.10);
}

.btn-primary.btn-large {
    background: linear-gradient(90deg, #feca57 0%, #ff9ff3 100%);
    color: #232946;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
    border: none;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(254,202,87,0.18);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-shadow: none;
}

.btn-primary.btn-large:hover,
.btn-primary.btn-large:focus {
    background: linear-gradient(90deg, #ff9ff3 0%, #feca57 100%);
    color: #232946;
    transform: translateY(-2px) scale(1.03);
}

/* Ongoing Deals Section - Dark BG, Bright Text */
.ongoing-deals {
    background: linear-gradient(120deg, #16161a 0%, #232946 100%);
    padding: 60px 0 40px 0;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.deal-card {
    background: linear-gradient(135deg, rgba(36, 37, 42, 0.95), rgba(78, 205, 196, 0.08));
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(78,205,196,0.10);
    padding: 32px 24px 28px 24px;
    text-align: center;
    color: #fff;
    border: 1.5px solid rgba(254,202,87,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
}

.deal-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px 0 rgba(254,202,87,0.13);
}

.deal-icon {
    font-size: 2.2rem;
    color: #feca57;
    margin-bottom: 12px;
}

.deal-card h3 {
    font-size: 1.3rem;
    color: #ff9ff3;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.deal-value {
    font-size: 2.1rem;
    color: #feca57;
    font-weight: 800;
    margin-bottom: 6px;
}

.deal-card p {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.deal-details {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 0.98rem;
    opacity: 0.85;
}

.deal-card img {
    width: 100%;
    height: 90px;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    border-radius: 10px;
    margin: 14px 0 14px 0;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(254,202,87,0.10);
}

.btn-secondary {
    background: linear-gradient(90deg, #ff9ff3 0%, #feca57 100%);
    color: #232946;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 8px;
    border: none;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(254,202,87,0.12);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-shadow: none;
    display: inline-block;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: linear-gradient(90deg, #feca57 0%, #ff9ff3 100%);
    color: #232946;
    transform: translateY(-2px) scale(1.03);
}



/* VIP Tiers */
.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vip-tier {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vip-tier.featured {
    border: 2px solid #feca57;
    transform: scale(1.05);
}

.vip-tier:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.tier-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tier-icon.bronze {
    background: linear-gradient(45deg, #cd7f32, #daa520);
    color: white;
}

.tier-icon.silver {
    background: linear-gradient(45deg, #c0c0c0, #e5e5e5);
    color: #333;
}

.tier-icon.gold {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #333;
}

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

.tier-benefits li {
    margin-bottom: 10px;
    color: #4ecdc4;
}

.tier-benefits img {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #45b7d1, #96ceb4);
    border-radius: 10px;
    margin-top: 15px;
}

/* Holiday Specials */
.holiday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.holiday-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.holiday-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(254, 202, 87, 0.3);
}

.holiday-icon {
    font-size: 3rem;
    color: #feca57;
    margin-bottom: 20px;
}

.holiday-benefits {
    text-align: left;
    margin: 20px 0;
}

.holiday-benefits p {
    margin-bottom: 10px;
    color: #4ecdc4;
}

.holiday-card img {
    width: 100%;
    height: 150px;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    border-radius: 10px;
    margin: 15px 0;
}

/* Special Sections */
.share-win, .comparison-cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(255, 107, 107, 0.2));
    margin: 50px 0;
}

.share-content, .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.comparison-cta {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(254, 202, 87, 0.13));
    padding: 60px 0;
    text-align: center;
    margin: 50px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 40px 30px 32px 30px;
    box-shadow: 0 6px 32px rgba(78,205,196,0.08), 0 1.5px 6px rgba(254,202,87,0.08);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(45deg, #4ecdc4, #feca57, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 22px;
    opacity: 0.92;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.cta-buttons .btn {
    min-width: 160px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(78,205,196,0.10);
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: linear-gradient(45deg, #4ecdc4, #feca57);
    color: #fff;
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    transform: translateY(-3px) scale(1.04);
}

.cta-buttons .btn-secondary {
    background: linear-gradient(45deg, #feca57, #ff6b6b);
    color: #fff;
}

.cta-buttons .btn-secondary:hover {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    transform: translateY(-3px) scale(1.04);
}

@media (max-width: 600px) {
    .cta-content {
        padding: 24px 8px 18px 8px;
    }
    .cta-content h2 {
        font-size: 1.3rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .cta-buttons .btn {
        min-width: 120px;
        font-size: 1rem;
        padding: 10px 18px;
    }
}


.share-win {
    background: linear-gradient(135deg, rgba(254,202,87,0.10), rgba(78,205,196,0.10));
    padding: 60px 0;
    text-align: center;
    margin: 50px 0;
}

.share-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 40px 30px 32px 30px;
    box-shadow: 0 6px 32px rgba(254,202,87,0.08), 0 1.5px 6px rgba(78,205,196,0.08);
}

.share-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.share-content p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 22px;
    opacity: 0.92;
}

.share-content .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(254,202,87,0.13);
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}

.share-content .btn-primary:hover {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(78,205,196,0.15);
}


.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 107, 0.1);
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #ff6b6b;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    border-left: 2px solid #ff6b6b;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    color: #ff6b6b;
}

.mobile-logo img {
    width: auto;
    height: 30px;
    border-radius: 15px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: scale(1.1);
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.1), transparent);
    border-left-color: #ff6b6b;
    color: #ff6b6b;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.mobile-auth-buttons {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-mobile {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 1rem;
}

.mobile-quick-actions {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-quick-actions h4 {
    color: #feca57;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.quick-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-action-btn:hover {
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.1));
    transform: translateX(5px);
    border-color: #ff6b6b;
}

.quick-action-btn i {
    font-size: 1.1rem;
    color: #4ecdc4;
}

/* Mobile menu animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in {
    animation: slideInRight 0.3s ease-out forwards;
    opacity: 0;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile menu scrollbar styling */
.mobile-nav-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.mobile-nav-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 3px;
}

.mobile-nav-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header .container {
        justify-content: space-between;
        align-items: center;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .categories-grid,
    .games-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        font-size: 0.8rem;
    }
    
    .floating-buttons {
        right: 10px;
        bottom: 10px;
    }
    
    .fab-btn span {
        display: none;
    }
    
    .bonus-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .vip-tiers {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-nav-menu {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .running-content {
        font-size: 12px;
        gap: 20px;
    }
    
    .feature-card,
    .category-card,
    .game-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    /* Mobile menu adjustments for very small screens */
    .mobile-nav-menu {
        width: 100%;
    }
    
    .mobile-nav-header {
        padding: 15px;
    }
    
    .mobile-nav-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .mobile-nav-link i {
        font-size: 1.1rem;
    }
    
    .quick-action-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn-mobile {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

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

.game-card,
.feature-card,
.category-card,
.testimonial-card {
    animation: slideInUp 0.6s ease-out;
}

.game-card:nth-child(2) {
    animation-delay: 0.1s;
}

.game-card:nth-child(3) {
    animation-delay: 0.2s;
}

.game-card:nth-child(4) {
    animation-delay: 0.3s;
}

.game-card:nth-child(5) {
    animation-delay: 0.4s;
}

.game-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* Sparkle animation for bonus elements */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.bonus-badge::before {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    animation: sparkle 2s infinite;
}