/* ==========================================
   CEZER - MODERN GAMING THEME
   ========================================== */

/* Hero Slider - Full Screen */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-slides {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(228, 226, 221, 0.1);
    border: 1px solid rgba(228, 226, 221, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--orange);
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent) 0%, #a8a69f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
}

.price-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
}

.price-period {
    font-size: 16px;
    color: var(--gray);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(228, 226, 221, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(228, 226, 221, 0.4);
    color: #0a0a0a;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(228, 226, 221, 0.3);
    color: var(--light);
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 20;
    pointer-events: none;
}

.hero-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(228, 226, 221, 0.2);
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: var(--accent);
    color: #0a0a0a;
    transform: scale(1.1);
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 20;
}

.hero-dot {
    position: relative;
    width: 120px;
    height: 50px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(228, 226, 221, 0.1);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-dot:hover {
    border-color: rgba(228, 226, 221, 0.3);
}

.hero-dot.active {
    border-color: var(--accent);
}

.dot-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--accent);
    transition: none;
}

.hero-dot.active .dot-progress {
    animation: dotProgress 6s linear forwards;
}

@keyframes dotProgress {
    from { width: 0; }
    to { width: 100%; }
}

.dot-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    transition: color 0.3s ease;
}

.hero-dot.active .dot-label {
    color: var(--accent);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 20;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.5) 0%, transparent 100%);
    border-bottom: 1px solid rgba(228, 226, 221, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(228, 226, 221, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 226, 221, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 226, 221, 0.1);
    border-radius: 12px;
    font-size: 24px;
    color: var(--accent);
}

.stat-content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.stat-plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-left: 2px;
}

.stat-label {
    width: 100%;
    font-size: 14px;
    color: var(--gray);
    margin-top: 4px;
}

/* Features Section */
.features-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.features-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(228, 226, 221, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(228, 226, 221, 0.08);
    border: 1px solid rgba(228, 226, 221, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.section-title span {
    background: linear-gradient(135deg, var(--accent) 0%, #a8a69f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(228, 226, 221, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(228, 226, 221, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
}

.feature-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 226, 221, 0.1);
    border-radius: 16px;
    font-size: 28px;
    color: var(--accent);
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-icon.red { color: var(--red); background: rgba(253, 92, 101, 0.1); }
.feature-icon.green { color: var(--green); background: rgba(32, 191, 108, 0.1); }
.feature-icon.yellow { color: var(--yellow); background: rgba(254, 210, 48, 0.1); }
.feature-icon.purple { color: var(--purple); background: rgba(167, 94, 234, 0.1); }
.feature-icon.orange { color: var(--orange); background: rgba(251, 130, 48, 0.1); }

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(228, 226, 221, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-glow.red { background: radial-gradient(circle, rgba(253, 92, 101, 0.3) 0%, transparent 70%); }
.feature-glow.green { background: radial-gradient(circle, rgba(32, 191, 108, 0.3) 0%, transparent 70%); }
.feature-glow.yellow { background: radial-gradient(circle, rgba(254, 210, 48, 0.3) 0%, transparent 70%); }
.feature-glow.purple { background: radial-gradient(circle, rgba(167, 94, 234, 0.3) 0%, transparent 70%); }
.feature-glow.orange { background: radial-gradient(circle, rgba(251, 130, 48, 0.3) 0%, transparent 70%); }

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(228, 226, 221, 0.08);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-tag.red { color: var(--red); background: rgba(253, 92, 101, 0.1); }
.feature-tag.green { color: var(--green); background: rgba(32, 191, 108, 0.1); }
.feature-tag.yellow { color: var(--yellow); background: rgba(254, 210, 48, 0.1); }
.feature-tag.purple { color: var(--purple); background: rgba(167, 94, 234, 0.1); }
.feature-tag.orange { color: var(--orange); background: rgba(251, 130, 48, 0.1); }

/* Games Section */
.games-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.games-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.games-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(228, 226, 221, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(228, 226, 221, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.games-glow-1 {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 94, 234, 0.1) 0%, transparent 70%);
}

.games-glow-2 {
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(228, 226, 221, 0.08) 0%, transparent 70%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.game-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .game-card-inner {
    transform: scale(1.02);
}

.game-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-bg {
    transform: scale(1.1);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.game-card-hot {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 14px;
    background: rgba(253, 92, 101, 0.9);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.game-card-hot.purple { background: rgba(167, 94, 234, 0.9); }
.game-card-hot.green { background: rgba(32, 191, 108, 0.9); }

.game-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 10;
}

.game-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.game-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}

.game-price .from {
    font-size: 13px;
    color: var(--gray);
}

.game-price .amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.game-price .period {
    font-size: 14px;
    color: var(--gray);
}

.game-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.game-card:hover .game-cta {
    opacity: 1;
    transform: translateY(0);
}

.game-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.game-card:hover .game-card-shine {
    left: 100%;
}

.games-more {
    text-align: center;
}

.btn-games-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(228, 226, 221, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-games-more:hover {
    background: var(--accent);
    color: #0a0a0a;
    border-color: var(--accent);
}

/* Reviews Section */
.reviews-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, transparent 50%, rgba(26, 26, 26, 0.3) 100%);
}

.reviews-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scrollReviews 30s linear infinite;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    flex-shrink: 0;
    width: 400px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(228, 226, 221, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(228, 226, 221, 0.3);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 226, 221, 0.1);
    border-radius: 12px;
    font-size: 20px;
    color: var(--accent);
}

.review-avatar.purple { color: var(--purple); background: rgba(167, 94, 234, 0.1); }
.review-avatar.green { color: var(--green); background: rgba(32, 191, 108, 0.1); }
.review-avatar.orange { color: var(--orange); background: rgba(251, 130, 48, 0.1); }

.review-info {
    flex: 1;
}

.review-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px 0;
}

.review-badge {
    font-size: 12px;
    color: var(--green);
}

.review-badge i {
    margin-right: 4px;
}

.review-rating {
    display: flex;
    gap: 3px;
    color: var(--yellow);
    font-size: 14px;
}

.review-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.review-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-game {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(228, 226, 221, 0.05);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gray);
}

.reviews-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tp-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.tp-stars {
    display: flex;
    gap: 4px;
    color: #00b67a;
    font-size: 20px;
}

.tp-score {
    font-size: 14px;
    color: var(--gray);
}

.trustpilot-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
}

.trustpilot-link strong {
    color: var(--white);
}

.trustpilot-link img {
    margin-left: 4px;
}

/* Discord Section */
.discord-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.discord-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.discord-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5865F2 0%, #7289da 50%, #5865F2 100%);
    opacity: 0.15;
}

.discord-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(88, 101, 242, 0.4) 0%, transparent 70%);
}

.discord-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.discord-icon-wrap {
    position: relative;
    margin-bottom: 30px;
}

.discord-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.5) 0%, transparent 70%);
    animation: discordPulse 3s ease infinite;
}

@keyframes discordPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.discord-icon {
    position: relative;
    font-size: 80px;
    color: #5865F2;
    z-index: 1;
}

.discord-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.discord-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.discord-text strong {
    color: var(--white);
}

.discord-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.discord-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.discord-stat i {
    font-size: 14px;
    color: var(--gray);
}

.discord-stat i.fa-circle {
    color: var(--green);
    font-size: 10px;
}

.discord-stat .stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.discord-stat .stat-label {
    font-size: 14px;
    color: var(--gray);
}

.discord-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #5865F2;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(88, 101, 242, 0.5);
    color: var(--white);
}

.discord-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: discordShine 3s ease infinite;
}

@keyframes discordShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Footer */
.footer-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(228, 226, 221, 0.08);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
}

.footer-logo strong {
    font-weight: 800;
    color: var(--accent);
}

.footer-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 226, 221, 0.08);
    border: 1px solid rgba(228, 226, 221, 0.1);
    border-radius: 12px;
    color: var(--light);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent);
    color: #0a0a0a;
    transform: translateY(-3px);
}

.footer-links h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links h4 i {
    color: var(--accent);
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-middle {
    padding: 30px 0;
    border-top: 1px solid rgba(228, 226, 221, 0.08);
    border-bottom: 1px solid rgba(228, 226, 221, 0.08);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-methods span {
    font-size: 14px;
    color: var(--gray);
}

.payment-icons {
    display: flex;
    gap: 16px;
    font-size: 28px;
    color: var(--gray);
}

.payment-icons i:hover {
    color: var(--accent);
}

.security-badges {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.security-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(228, 226, 221, 0.1);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--light);
}

.footer-legal {
    padding: 20px 0;
    border-bottom: 1px solid rgba(228, 226, 221, 0.08);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--accent);
}

.legal-links a i {
    font-size: 12px;
    color: var(--accent);
    opacity: 0.7;
}

.footer-bottom {
    padding: 40px 0;
}

.footer-info {
    text-align: center;
    margin-bottom: 20px;
}

.company-name {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 12px;
}

.company-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.company-details i {
    color: var(--accent);
    margin-right: 4px;
}

.company-legal {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.company-legal i {
    color: var(--accent);
    margin: 0 2px;
}

.company-gdpr {
    font-size: 12px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.company-gdpr a {
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(228, 226, 221, 0.05);
}

.copyright p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.copyright i.fa-heart {
    color: var(--red);
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(228, 226, 221, 0.1);
    z-index: 9999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 30px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-text i {
    font-size: 28px;
    color: var(--accent);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: var(--gray);
}

.cookie-text a {
    color: var(--accent);
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid rgba(228, 226, 221, 0.2);
    color: var(--light);
}

.cookie-btn.decline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cookie-btn.accept {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #0a0a0a;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(228, 226, 221, 0.3);
}

/* Navbar Dropdown with Descriptions */
.panel-dropdown .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
}

.dropdown-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 226, 221, 0.1);
    border-radius: 10px;
    font-size: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
}

.dropdown-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.dropdown-item-desc {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}

.panel-dropdown .dropdown-item:hover .dropdown-item-icon {
    background: var(--accent);
    color: #0a0a0a;
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-pagination {
        display: none;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-card {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 100vh;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-nav {
        padding: 0 20px;
    }
    .hero-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .games-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .discord-stats {
        gap: 30px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-text {
        flex-direction: column;
    }
    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
    }
    .security-badges {
        justify-content: flex-start;
    }
    .company-details {
        flex-direction: column;
        gap: 8px;
    }
    .legal-links {
        gap: 15px;
    }
}
