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

:root {
    --primary: #ff6347;
    --secondary: #ff8c42;
    --dark: #1a0f0a;
    --darker: #0f0805;
    --light: #ffffff;
    --gray: #8b7355;
    --border: #3a2a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 99, 71, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent),
        radial-gradient(1px 1px at 150px 120px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 3s ease-in-out infinite;
}

.stars::after {
    background-size: 250px 250px;
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.1);
    }
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 8, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 8, 5, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 99, 71, 0.5));
}

.logo i {
    color: var(--primary);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.language-selector {
    position: relative;
}

.btn-language {
    padding: 10px 15px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 70px;
    justify-content: center;
}

.btn-language:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 99, 71, 0.3);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.language-item:last-child {
    border-bottom: none;
}

.language-item:hover {
    background: rgba(255, 99, 71, 0.1);
    padding-left: 25px;
}

.language-item.active {
    background: rgba(255, 99, 71, 0.15);
    color: var(--primary);
}

.language-item .flag {
    font-size: 1.2rem;
}

.mobile-lang-selector {
    display: none;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.mobile-lang-selector .lang-flag {
    font-size: 1.5rem;
    padding: 8px 12px;
    background: rgba(255, 99, 71, 0.1);
    border: 1px solid rgba(255, 99, 71, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-lang-selector .lang-flag:hover,
.mobile-lang-selector .lang-flag.active {
    background: rgba(255, 99, 71, 0.2);
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(255, 99, 71, 0.3);
}

.btn-nav-login {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-nav-login:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 99, 71, 0.3);
}

.btn-nav-register {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-nav-register:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 99, 71, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Side Game Icons */
.hero-side-icons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.hero-side-left {
    left: 40px;
}

.hero-side-right {
    right: 40px;
}

.game-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 99, 71, 0.1);
    border: 2px solid rgba(255, 99, 71, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.game-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.game-icon:hover {
    background: rgba(255, 99, 71, 0.2);
    border-color: var(--primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.4);
}

.game-icon:hover i {
    transform: scale(1.2);
}

.game-icon::before {
    content: attr(data-game);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 99, 71, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-side-left .game-icon::before {
    left: calc(100% + 15px);
}

.hero-side-right .game-icon::before {
    right: calc(100% + 15px);
}

.game-icon:hover::before {
    opacity: 1;
}

/* Hero Center Content */
.hero-content-center {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-main-logo {
    position: relative;
    margin: 0 auto 40px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 99, 71, 0.3) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-main-logo i {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 15px;
    animation: float-rotate 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 99, 71, 0.8));
}

@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255, 99, 71, 0.8);
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 99, 71, 0.8);
    letter-spacing: 2px;
    font-weight: 600;
    line-height: 1.4;
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle-new {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.6s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features-pills {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.feature-pill-new {
    padding: 12px 25px;
    background: rgba(255, 99, 71, 0.1);
    border: 1px solid rgba(255, 99, 71, 0.3);
    border-radius: 25px;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-pill-new:hover {
    background: rgba(255, 99, 71, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 99, 71, 0.3);
}

.feature-pill-new i {
    color: var(--primary);
}

.hero-buttons-new {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 1s both;
}

.btn-hero-primary {
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.5);
}

.btn-hero-discord {
    padding: 16px 35px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-discord:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.5);
}

.btn-hero-forum {
    padding: 16px 35px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(75, 0, 130, 0.8));
    border: 2px solid rgba(138, 43, 226, 0.5);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-forum:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(75, 0, 130, 1));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
}

.btn-hero-pricing {
    padding: 16px 35px;
    background: rgba(255, 99, 71, 0.1);
    border: 2px solid rgba(255, 99, 71, 0.3);
    color: var(--light);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-pricing:hover {
    background: rgba(255, 99, 71, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.3);
}

.hero-stats-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(255, 99, 71, 0.05);
    border: 1px solid rgba(255, 99, 71, 0.2);
    border-radius: 15px;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 99, 71, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 99, 71, 0.1);
    transform: translateY(-5px);
}

.stat-box i {
    font-size: 2rem;
    color: var(--primary);
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-service-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease 1.4s both;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(20, 10, 5, 0.5);
    border: 1px solid rgba(255, 99, 71, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.3);
    background: rgba(255, 99, 71, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 99, 71, 0.1);
    border: 2px solid rgba(255, 99, 71, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 99, 71, 0.2);
    border-color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.servers-section, .videos-section, .pricing-section, .faq-section, .features-section {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.features-section {
    background: var(--darker);
}

.servers-section {
    background: var(--dark);
}

.videos-section {
    background: var(--darker);
}

.pricing-section {
    background: var(--dark);
}

.faq-section {
    background: var(--darker);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 50px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: expand 2s ease-in-out infinite;
}

@keyframes expand {
    0%, 100% {
        width: 100px;
    }
    50% {
        width: 150px;
    }
}

.server-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: 5px;
    flex: 1;
    max-width: 400px;
    transition: border-color 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 99, 71, 0.3);
    transform: translateY(-2px);
}

.search-box i {
    color: var(--gray);
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--light);
    outline: none;
    width: 100%;
    font-size: 0.95rem;
}

.status-legend {
    display: flex;
    gap: 15px;
}

.legend-item {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-item.active {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.legend-item.maintenance {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
}

.legend-item.offline {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.legend-item i {
    font-size: 0.6rem;
}

.servers-table {
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px 30px;
    background: rgba(255, 99, 71, 0.05);
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    align-items: center;
}

.table-row:hover {
    background: rgba(255, 99, 71, 0.05);
    transform: translateX(8px);
    box-shadow: -3px 0 0 var(--primary);
}

.table-row:last-child {
    border-bottom: none;
}

.server-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.server-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.table-row:hover .server-icon {
    transform: scale(1.1) rotate(5deg);
}

.server-icon-placeholder {
    width: 50px;
    height: 50px;
    background: rgba(255, 99, 71, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.table-row:hover .server-icon-placeholder {
    background: rgba(255, 99, 71, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.server-icon-placeholder i {
    font-size: 1.5rem;
    color: var(--primary);
}

.server-name {
    font-weight: 700;
    color: var(--light);
    font-size: 1rem;
}

.server-type {
    font-size: 0.85rem;
    color: var(--gray);
}

.package-badge {
    padding: 6px 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 99, 71, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 99, 71, 0.6);
    }
}

.table-row:hover .package-badge {
    transform: scale(1.05);
}

.status-badge {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.status-badge.online {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    animation: pulse-green 2s ease-in-out infinite;
}

.status-badge.offline {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    }
}

.table-row:hover .status-badge {
    transform: scale(1.05);
}

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

.video-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.3);
    border-color: var(--primary);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 99, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    color: var(--light);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.video-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-watch {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-watch:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 99, 71, 0.4);
}

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

.pricing-card {
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.3);
    background: rgba(255, 99, 71, 0.02);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin: 0 auto 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(-5deg);
}

.pricing-icon-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 99, 71, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon-placeholder {
    background: rgba(255, 99, 71, 0.2);
    transform: scale(1.1) rotate(-5deg);
}

.pricing-icon-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.price-options {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.price-box {
    flex: 1;
    padding: 15px 10px;
    background: rgba(255, 99, 71, 0.05);
    border: 1px solid rgba(255, 99, 71, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.price-box:hover {
    background: rgba(255, 99, 71, 0.15);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 99, 71, 0.2);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.4);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 99, 71, 0.2);
    transform: translateX(5px);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 99, 71, 0.05);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 20px;
}

.btn-discord-large {
    display: block;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-discord-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.4);
}

.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 60px 20px 30px;
}

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

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.85rem;
}

.discord-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #5865F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

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

.discord-fab:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.6);
    animation: none;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 10, 0, 0.95), rgba(10, 5, 0, 0.95));
    border: 2px solid rgba(255, 99, 71, 0.3);
    border-radius: 20px;
    padding: 0;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    box-shadow: 0 20px 60px rgba(255, 99, 71, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.server-modal-content {
    max-width: 900px;
    width: 100%;
}

.video-modal-content {
    max-width: 1000px;
    width: 100%;
    padding: 40px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal .close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 2rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 99, 71, 0.1);
}

.modal .close:hover {
    color: var(--primary);
    transform: rotate(90deg);
    background: rgba(255, 99, 71, 0.2);
}

/* Server Modal Specific Styles */
.modal-server-header {
    text-align: center;
    padding: 40px 40px 30px;
    border-bottom: 1px solid rgba(255, 99, 71, 0.2);
}

.modal-server-icon {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    margin: 0 auto 20px;
    display: block;
    object-fit: cover;
    border: 2px solid rgba(255, 99, 71, 0.3);
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.2);
}

.modal-server-icon-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255, 99, 71, 0.1);
    border: 2px solid rgba(255, 99, 71, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.modal-server-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 10px;
}

.modal-server-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

.modal-features-section {
    padding: 30px 40px;
    background: rgba(255, 99, 71, 0.03);
    border-bottom: 1px solid rgba(255, 99, 71, 0.2);
}

.modal-section-title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

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

.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 99, 71, 0.05);
    border: 1px solid rgba(255, 99, 71, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-feature-item:hover {
    background: rgba(255, 99, 71, 0.1);
    transform: translateX(5px);
}

.modal-feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.modal-feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.modal-pricing-section {
    padding: 30px 40px 40px;
}

.modal-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.modal-price-card {
    background: rgba(255, 99, 71, 0.05);
    border: 2px solid rgba(255, 99, 71, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.modal-price-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.3);
    background: rgba(255, 99, 71, 0.08);
}

.modal-price-featured {
    border-color: var(--primary);
    background: rgba(255, 99, 71, 0.1);
}

.modal-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.modal-price-header {
    margin-bottom: 15px;
}

.modal-price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1;
}

.modal-price-original {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.modal-price-discounted {
    color: #00ff00;
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    }
}

.modal-discount-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #ff0000, #ff6600);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 20px;
    margin-bottom: 15px;
    animation: badgePulse 1.5s ease-in-out infinite;
}

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

.modal-coupon-info {
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.2), rgba(255, 140, 66, 0.2));
    border: 2px solid rgba(255, 99, 71, 0.4);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.modal-coupon-info i {
    color: var(--primary);
    margin-right: 8px;
}

.modal-coupon-info strong {
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 1px;
}

.modal-btn-buy {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 99, 71, 0.5);
}

/* Video Modal Styles */
.video-embed-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-embed-container iframe,
.video-embed-container video {
    border-radius: 15px;
}

/* Scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.no-videos {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        border-top: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
        opacity: 0;
        transform: translateX(-20px);
        animation: slideIn 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-nav-login {
        display: none;
    }
    
    /* Hero responsive */
    .hero-side-icons {
        display: none;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-main-logo {
        width: 150px;
        height: 150px;
    }
    
    .hero-main-logo i {
        font-size: 4rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .hero-stats-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .table-header {
        display: none;
    }
    
    .price-options {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .coupon-banner {
        top: 70px;
        width: 95%;
        max-width: none;
    }
    
    .coupon-banner-content {
        flex-direction: column;
        padding: 15px 20px;
        text-align: center;
        gap: 15px;
    }
    
    .coupon-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .coupon-title {
        font-size: 1rem;
    }
    
    .coupon-text {
        font-size: 0.85rem;
    }
    
    .coupon-copy-btn {
        width: 100%;
        padding: 10px 20px;
    }
    
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-subtitle-new {
        font-size: 0.9rem;
    }
    
    .hero-main-logo {
        width: 120px;
        height: 120px;
    }
    
    .hero-main-logo i {
        font-size: 3rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .hero-stats-new {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .stat-box {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-buttons-new {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-hero-primary,
    .btn-hero-discord,
    .btn-hero-forum,
    .btn-hero-pricing {
        width: 100%;
        justify-content: center;
    }
    
    .server-controls {
        flex-direction: column;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .videos-grid,
    .pricing-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-features-pills {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-pill-new {
        text-align: center;
        justify-content: center;
    }
    
    /* Modal responsive */
    .modal-content {
        margin: 20px;
        max-height: 85vh;
    }
    
    .server-modal-content,
    .video-modal-content {
        padding: 30px 20px;
    }
    
    .modal-server-header {
        padding: 30px 20px 20px;
    }
    
    .modal-features-section,
    .modal-pricing-section {
        padding: 20px;
    }
    
    .modal-features-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-price-amount {
        font-size: 2.5rem;
    }
    
    .modal-server-name {
        font-size: 1.5rem;
    }
    
    .video-embed-container iframe,
    .video-embed-container video {
        height: 250px;
    }
}


/* Additional Hero Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 99, 71, 0.1);
    border: 1px solid rgba(255, 99, 71, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

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

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


/* Coupon Banner */
.coupon-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.95), rgba(255, 140, 66, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 99, 71, 0.5);
    z-index: 999;
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease, pulse 2s ease-in-out infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 99, 71, 0.5);
    }
    50% {
        box-shadow: 0 10px 50px rgba(255, 99, 71, 0.8);
    }
}

.coupon-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
}

.coupon-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: bounce 1s ease-in-out infinite;
}

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

.coupon-info {
    flex: 1;
}

.coupon-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.coupon-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.coupon-text strong {
    background: rgba(255, 255, 255, 0.3);
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 900;
    letter-spacing: 1px;
}

.coupon-copy-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.coupon-copy-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3));
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Recent Updates Widget */
.recent-updates-widget {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 320px;
    background: linear-gradient(135deg, rgba(26, 10, 0, 0.95), rgba(10, 5, 0, 0.95));
    border: 2px solid rgba(255, 99, 71, 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 99, 71, 0.3);
    z-index: 998;
    backdrop-filter: blur(10px);
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.widget-header {
    padding: 15px 20px;
    background: rgba(255, 99, 71, 0.1);
    border-bottom: 1px solid rgba(255, 99, 71, 0.2);
    border-radius: 13px 13px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-header i {
    color: var(--primary);
    font-size: 1.2rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

.widget-header span {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.widget-content {
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.widget-content::-webkit-scrollbar {
    width: 6px;
}

.widget-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.widget-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 99, 71, 0.05);
    border: 1px solid rgba(255, 99, 71, 0.2);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.update-item:hover {
    background: rgba(255, 99, 71, 0.1);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(255, 99, 71, 0.2);
}

.update-item:last-child {
    margin-bottom: 0;
}

.update-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 99, 71, 0.1);
    border: 2px solid rgba(255, 99, 71, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.update-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.update-info {
    flex: 1;
    min-width: 0;
}

.update-server {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.update-version {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.update-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.update-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 99, 71, 0.5);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(255, 99, 71, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(255, 99, 71, 0.7);
    }
}

/* Responsive */
@media (max-width: 1400px) {
    .recent-updates-widget {
        right: 15px;
        width: 280px;
    }
}

@media (max-width: 992px) {
    .recent-updates-widget {
        display: none;
    }
}


/* Testimonials Section */
.testimonials-section {
    background: var(--dark);
    padding: 80px 20px;
}

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

.testimonial-card {
    background: rgba(20, 10, 5, 0.5);
    border: 1px solid rgba(255, 99, 71, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(255, 99, 71, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.3);
    background: rgba(255, 99, 71, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 99, 71, 0.1);
    border: 2px solid rgba(255, 99, 71, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.testimonial-user {
    flex: 1;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 5px;
}

.user-rating {
    display: flex;
    gap: 3px;
}

.user-rating i {
    font-size: 0.9rem;
}

.testimonial-comment {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.no-testimonials {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
