/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e17 0%, #1a2238 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.loading-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Prevent scrolling and interaction */
body.loading-active {
    overflow: hidden;
    height: 100vh;
    pointer-events: none;
}

.loading-container {
    text-align: center;
    max-width: 300px;
    width: 90%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(76, 201, 240, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.loading-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(76, 201, 240, 0.5));
}

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

.loading-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #4cc9f0, #8be9fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4cc9f0, #1e40af);
    border-radius: 2px;
    animation: loadingProgress 5s ease-in-out forwards;
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Logo glow animation */
.loading-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Modern Transparent Navbar CSS - Enhanced */
.navbar-gg {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(76, 201, 240, 0.1);
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-gg.scrolled {
    background: rgba(10, 14, 23, 0.98);
    padding: 8px 0;
}

/* Brand Styling - Single Row */
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-pulse {
    position: relative;
    width: 35px;
    height: 35px;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(76, 201, 240, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(76, 201, 240, 0.8));
    }
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}

.brand-glow {
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(76, 201, 240, 0.2);
}

.brand-subtle {
    color: #ffffff;
    font-weight: 600;
}

.brand-badge {
    font-size: 0.55rem;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: white;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 4px;
    animation: badgeFloat 3s ease-in-out infinite;
}

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

/* Navigation Links - Transparent Background */
.navbar-nav .nav-item {
    margin: 0 5px;
}

.nav-link {
    color: #9ca3af !important;
    padding: 10px 16px !important;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    background: transparent !important;
    border: 1px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4cc9f0, #1e40af);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ffffff !important;
    background: rgba(76, 201, 240, 0.08) !important;
    border-color: rgba(76, 201, 240, 0.2);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.15), rgba(30, 64, 175, 0.15)) !important;
    border: 1px solid rgba(76, 201, 240, 0.3);
}

/* GG Studios Button - Match Discord Style */
.nav-link[href*="studio"] {
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.1), rgba(30, 64, 175, 0.1)) !important;
    border: 1px solid rgba(76, 201, 240, 0.2);
}

.nav-link[href*="studio"]:hover {
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.2), rgba(30, 64, 175, 0.2)) !important;
    border-color: rgba(76, 201, 240, 0.3);
}

.nav-icon {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.nav-text {
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Dropdown Styling - Clear Text */
.dropdown-gg .dropdown-toggle::after {
    display: none;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.dropdown-gg.show .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-glass {
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(76, 201, 240, 0.15);
    border-radius: 14px;
    padding: 8px;
    margin-top: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: dropdownSlide 0.25s ease;
    min-width: 260px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

.dropdown-item {
    color: #d1d5db;
    padding: 10px 14px;
    border-radius: 8px;
    margin: 3px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    font-weight: 400;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
}

.dropdown-item:hover {
    color: #ffffff;
    background: rgba(76, 201, 240, 0.12);
    transform: translateX(4px);
}

.dropdown-item i {
    color: #4cc9f0;
    font-size: 0.9rem;
    width: 18px;
    opacity: 0.9;
}

.dropdown-title {
    font-weight: 500;
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.dropdown-subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
    display: block;
    margin-top: 2px;
    line-height: 1.3;
    font-weight: 300;
}

/* Dual Button - Auto Adjust Text */
.dual-button {
    display: flex;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.9), rgba(26, 34, 56, 0.9));
    border-radius: 10px;
    padding: 2px;
    border: 1px solid rgba(76, 201, 240, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-width: 180px;
    height: 40px;
}

.dual-button a {
    flex: 1;
    padding: 0 12px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.btn-free {
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    border-radius: 8px 0 0 8px;
    font-size: 0.82rem;
}

.btn-login {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0 8px 8px 0;
    font-size: 0.82rem;
}

.btn-free:hover {
    background: linear-gradient(135deg, #1e40af, #4cc9f0);
    transform: scale(1.02);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.02);
}

.btn-free i, .btn-login i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 8px 0;
}

/* Mobile Toggle */
.hamburger {
    width: 28px;
    height: 18px;
    position: relative;
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
}

.hamburger-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4cc9f0, #1e40af);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 8px; }
.hamburger-line:nth-child(3) { top: 16px; }

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* Offcanvas */
.offcanvas {
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-right: 1px solid rgba(76, 201, 240, 0.1);
}

.btn-close-custom {
    background: none;
    color: #9ca3af;
    font-size: 1.3rem;
    opacity: 1;
    transition: color 0.3s ease;
    padding: 8px;
    margin: -8px;
}

.btn-close-custom:hover {
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .nav-text {
        font-size: 0.85rem;
    }
    
    .nav-link {
        padding: 10px 14px !important;
    }
    
    .dual-button {
        min-width: 160px;
    }
    
    .dual-button a {
        font-size: 0.8rem;
        padding: 0 10px;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        padding: 15px 0;
    }
    
    .nav-item {
        margin: 6px 0;
    }
    
    .nav-link {
        padding: 12px 20px !important;
        justify-content: center;
    }
    
    .dropdown-menu {
        background: rgba(26, 34, 56, 0.9);
        border: 1px solid rgba(76, 201, 240, 0.1);
        box-shadow: none;
        padding: 0;
        margin: 10px 0 10px 20px;
        position: static !important;
        transform: none !important;
    }
    
    .dual-button {
        margin-top: 15px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 1.1rem;
    }
    
    .brand-badge {
        display: none;
    }
    
    .dual-button a {
        padding: 0 12px;
        font-size: 0.85rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .brand-wrapper {
        gap: 8px;
    }
    
    .logo-pulse {
        width: 30px;
        height: 30px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .dual-button {
        min-width: auto;
        height: 38px;
    }
    
    .dual-button a {
        font-size: 0.8rem;
        padding: 0 8px;
        gap: 4px;
    }
    
    .dual-button a i {
        font-size: 0.75rem;
    }
}

/* Active State Improvements */
.nav-link.active .nav-icon {
    color: #4cc9f0;
}

/* Text Contrast Improvements */
.dropdown-item:hover .dropdown-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

.dropdown-item:hover .dropdown-subtitle {
    color: #d1d5db;
}

/* Video Background */
.video-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.video-bg:hover video {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .video-bg video {
        transform: scale(1.05);
    }
}

/* Copper Update Section */
.copper-update-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 40px 0;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(184, 115, 51, 0.7) 0%, rgba(139, 69, 19, 0.6) 100%);
    mix-blend-mode: multiply;
}

/* Content Styling */
.copper-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.copper-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 115, 51, 0.9);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
}

.copper-badge i {
    font-size: 1rem;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(184, 115, 51, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(184, 115, 51, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(184, 115, 51, 0); }
}

.copper-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.copper-text {
    background: linear-gradient(45deg, #ffd700, #b87333, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.minecraft-text {
    color: #ffffff;
    font-size: 2.2rem;
}

.copper-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.copper-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(184, 115, 51, 0.3);
    transform: translateY(-2px);
}

.feature i {
    color: #ffd700;
    font-size: 1.1rem;
}

.feature span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Buttons */
.copper-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.btn-copper, .btn-play {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: none;
}

.btn-copper {
    background: rgba(184, 115, 51, 0.2);
    color: #ffd700;
    border: 2px solid #b87333;
}

.btn-copper:hover {
    background: rgba(184, 115, 51, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 115, 51, 0.4);
}

.btn-play {
    background: linear-gradient(45deg, #b87333, #daa520);
    color: white;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
}

.btn-play:hover {
    background: linear-gradient(45deg, #daa520, #b87333);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.6);
}

/* Update Note */
.update-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.update-note i {
    color: #4ade80;
    font-size: 1rem;
    animation: spin 4s linear infinite;
}

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

.update-note span {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .copper-update-section {
        height: 450px;
    }
    
    .copper-title {
        font-size: 2.2rem;
    }
    
    .minecraft-text {
        font-size: 1.8rem;
    }
    
    .copper-features {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .copper-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin: 0 auto 25px;
    }
    
    .btn-copper, .btn-play {
        width: 100%;
    }
    
    .copper-description {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .copper-update-section {
        height: 500px;
    }
    
    .copper-title {
        font-size: 1.8rem;
    }
    
    .minecraft-text {
        font-size: 1.5rem;
    }
    
    .copper-description {
        font-size: 0.9rem;
    }
    
    .feature span {
        font-size: 0.85rem;
    }
    
    .update-note span {
        font-size: 0.85rem;
    }
}

/* Premium GGNodes Navbar - Mobile Optimized with Animations */
.navbar-premium {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-bottom: 1px solid rgba(76, 201, 240, 0.3);
    padding: 10px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-container {
    max-width: 1300px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Background Animation */
.nav-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-particle {
    position: absolute;
    background: linear-gradient(135deg, #4cc9f0, #8be9fd);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatParticle 6s ease-in-out infinite;
}

.bg-particle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: -20px;
    left: 10%;
    animation-delay: 0s;
}

.bg-particle:nth-child(2) {
    width: 40px;
    height: 40px;
    top: -10px;
    right: 20%;
    animation-delay: 2s;
}

.bg-particle:nth-child(3) {
    width: 30px;
    height: 30px;
    bottom: -15px;
    left: 50%;
    animation-delay: 4s;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

/* Brand & Logo */
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container {
    position: relative;
    width: 32px;
    height: 32px;
}

.logo-spin {
    width: 100%;
    height: 100%;
    animation: logoSpin 8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(76, 201, 240, 0.6));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: logoPulse 3s ease-in-out infinite;
}

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

@keyframes logoPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.2); }
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand-text span {
    background: linear-gradient(135deg, #4cc9f0, #8be9fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

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

/* Mobile Toggle Button */
.nav-toggle {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-toggle:hover {
    background: rgba(76, 201, 240, 0.2);
    transform: scale(1.1);
}

.toggle-bars {
    position: relative;
    width: 20px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toggle-bar {
    height: 2px;
    background: linear-gradient(90deg, #4cc9f0, #8be9fd);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav Links */
.nav-links {
    gap: 4px;
}

.nav-item-animate {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af !important;
    font-weight: 500;
    padding: 14px 16px !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid transparent;
}

.nav-item-animate i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-item-animate:hover {
    color: #fff !important;
    background: rgba(76, 201, 240, 0.1);
    border-color: rgba(76, 201, 240, 0.3);
    transform: translateX(8px) scale(1.02);
}

.nav-item-animate:hover i {
    transform: scale(1.2);
    color: #4cc9f0;
}

.nav-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 201, 240, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-item-animate:hover .nav-glow {
    left: 100%;
}

/* Premium Highlight */
.highlight {
    background: linear-gradient(135deg, #4cc9f0, #1e40af) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(76, 201, 240, 0.4);
    border: 1px solid rgba(76, 201, 240, 0.5) !important;
    animation: premiumPulse 2s ease-in-out infinite;
}

.premium-glow {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
}

@keyframes premiumPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(76, 201, 240, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(76, 201, 240, 0.8); }
}

/* Dropdowns */
.dropdown-menu {
    background: rgba(26, 34, 56, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    padding: 12px;
    margin-top: 8px;
    animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 2px 0;
    position: relative;
    overflow: hidden;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.dropdown-item span {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}

.dropdown-item:hover {
    color: #fff;
    background: rgba(76, 201, 240, 0.1);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    color: #4cc9f0;
    transform: scale(1.1);
}

.premium-offer {
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.1), transparent);
    border-left: 3px solid #4cc9f0;
}

/* Action Buttons */
.nav-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    overflow: hidden;
    flex: 1;
    min-height: 50px;
}

.budget-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.budget-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.premium-btn {
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: #fff;
    box-shadow: 0 4px 20px rgba(76, 201, 240, 0.4);
    border: 1px solid rgba(76, 201, 240, 0.5);
}

.premium-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(76, 201, 240, 0.6);
}

.btn-glow {
    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.6s ease;
}

.nav-btn:hover .btn-glow {
    left: 100%;
}

/* Offcanvas */
.offcanvas-premium {
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(30px);
    border-right: 1px solid rgba(76, 201, 240, 0.2);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(76, 201, 240, 0.2);
    padding: 20px;
    background: rgba(26, 34, 56, 0.8);
}

.close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

.close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-btn:hover {
    background: rgba(76, 201, 240, 0.2);
    transform: rotate(90deg);
}

.offcanvas-body {
    padding: 20px;
}

/* Mobile Optimizations */
@media (max-width: 991px) {
    .navbar-premium {
        padding: 8px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .logo-container {
        width: 28px;
        height: 28px;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .dropdown-menu {
        background: rgba(26, 34, 56, 0.9);
        margin: 8px 0;
        border: 1px solid rgba(76, 201, 240, 0.2);
    }
    
    .nav-item-animate {
        padding: 16px 20px !important;
        margin: 2px 0;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 12px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .nav-item-animate {
        padding: 14px 16px !important;
        font-size: 0.95rem;
    }
    
    .nav-item-animate i {
        font-size: 1rem;
    }
    
    .dropdown-item {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .nav-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Scroll Animation */
.navbar-premium.scrolled {
    background: rgba(10, 14, 23, 0.98);
    padding: 6px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Loading Animation */
.navbar-premium.loading .brand-text span {
    animation: loadingShine 1.5s ease-in-out infinite;
}

@keyframes loadingShine {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Discord Community Section */
.discord-community-section {
    background: linear-gradient(135deg, #0a0e17 0%, #1a2238 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.discord-community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(88, 101, 242, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.discord-community-section .container-fluid {
    position: relative;
    z-index: 2;
}

.discord-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Discord Widget Container */
.discord-widget-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.discord-icon i {
    color: white;
    font-size: 1.5rem;
}

.discord-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Community Stats */
.community-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    color: #5865F2;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Online Members */
.online-members {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.online-members h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.member-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    border-radius: 50%;
}

.member-name {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.member-search {
    margin-top: 10px;
}

.member-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.member-search input:focus {
    border-color: #5865F2;
    background: rgba(88, 101, 242, 0.1);
}

.member-search input::placeholder {
    color: #6b7280;
}

/* Widget Frame */
.widget-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.discord-widget {
    border-radius: 12px;
    display: block;
}

/* Discord Content */
.discord-content {
    padding-left: 20px;
}

.content-badge {
    display: inline-block;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-description {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Community Features */
.community-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Discord Actions */
.discord-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-discord-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
    transition: all 0.3s ease;
}

.btn-discord-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    color: white;
}

.btn-discord-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #5865F2;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #5865F2;
    transition: all 0.3s ease;
}

.btn-discord-secondary:hover {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .discord-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .discord-content {
        padding-left: 0;
    }
    
    .discord-actions {
        justify-content: center;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .community-stats {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .discord-community-section {
        padding: 80px 0;
    }
    
    .discord-widget-container {
        padding: 20px;
    }
    
    .discord-widget {
        width: 100%;
        max-width: 350px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .discord-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-discord-primary,
    .btn-discord-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .discord-community-section {
        padding: 60px 0;
    }
    
    .content-title {
        font-size: 1.6rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .discord-widget-container {
        padding: 15px;
    }
}

/* Animation Classes */
.discord-widget-container {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.discord-content {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.2s;
}

.discord-widget-container.animate,
.discord-content.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Snowfall Animation CSS */
#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    filter: blur(0.5px);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.5);
    animation: snowfall linear infinite;
    opacity: 0.8;
}

/* Individual snowflake animations with different timings */
.snowflake:nth-child(1) {
    left: 5%;
    animation-duration: 12s;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.snowflake:nth-child(2) {
    left: 15%;
    animation-duration: 15s;
    animation-delay: 1s;
    width: 7px;
    height: 7px;
}

.snowflake:nth-child(3) {
    left: 25%;
    animation-duration: 14s;
    animation-delay: 2s;
    width: 8px;
    height: 8px;
}

.snowflake:nth-child(4) {
    left: 35%;
    animation-duration: 16s;
    animation-delay: 0.5s;
    width: 5px;
    height: 5px;
}

.snowflake:nth-child(5) {
    left: 45%;
    animation-duration: 13s;
    animation-delay: 1.5s;
    width: 7px;
    height: 7px;
}

.snowflake:nth-child(6) {
    left: 55%;
    animation-duration: 11s;
    animation-delay: 3s;
    width: 6px;
    height: 6px;
}

.snowflake:nth-child(7) {
    left: 65%;
    animation-duration: 15s;
    animation-delay: 2.5s;
    width: 8px;
    height: 8px;
}

.snowflake:nth-child(8) {
    left: 75%;
    animation-duration: 12s;
    animation-delay: 1s;
    width: 5px;
    height: 5px;
}

.snowflake:nth-child(9) {
    left: 85%;
    animation-duration: 14s;
    animation-delay: 0s;
    width: 7px;
    height: 7px;
}

.snowflake:nth-child(10) {
    left: 95%;
    animation-duration: 13s;
    animation-delay: 2s;
    width: 6px;
    height: 6px;
}

/* Additional snowflakes with varied patterns */
.snowflake:nth-child(11) {
    left: 10%;
    animation-duration: 18s;
    animation-delay: 4s;
    width: 4px;
    height: 4px;
}

.snowflake:nth-child(12) {
    left: 20%;
    animation-duration: 16s;
    animation-delay: 3.5s;
    width: 9px;
    height: 9px;
}

.snowflake:nth-child(13) {
    left: 30%;
    animation-duration: 14s;
    animation-delay: 5s;
    width: 5px;
    height: 5px;
}

.snowflake:nth-child(14) {
    left: 40%;
    animation-duration: 12s;
    animation-delay: 4.5s;
    width: 7px;
    height: 7px;
}

.snowflake:nth-child(15) {
    left: 50%;
    animation-duration: 15s;
    animation-delay: 3s;
    width: 6px;
    height: 6px;
}

.snowflake:nth-child(16) {
    left: 60%;
    animation-duration: 17s;
    animation-delay: 6s;
    width: 8px;
    height: 8px;
}

.snowflake:nth-child(17) {
    left: 70%;
    animation-duration: 13s;
    animation-delay: 5.5s;
    width: 4px;
    height: 4px;
}

.snowflake:nth-child(18) {
    left: 80%;
    animation-duration: 16s;
    animation-delay: 4s;
    width: 7px;
    height: 7px;
}

.snowflake:nth-child(19) {
    left: 90%;
    animation-duration: 14s;
    animation-delay: 3.5s;
    width: 5px;
    height: 5px;
}

.snowflake:nth-child(20) {
    left: 7%;
    animation-duration: 19s;
    animation-delay: 7s;
    width: 6px;
    height: 6px;
}

/* Add more for the remaining snowflakes with varied positions and timings */
.snowflake:nth-child(21) {
    left: 17%;
    animation-duration: 14s;
    animation-delay: 6.5s;
}

.snowflake:nth-child(22) {
    left: 27%;
    animation-duration: 16s;
    animation-delay: 8s;
}

.snowflake:nth-child(23) {
    left: 37%;
    animation-duration: 12s;
    animation-delay: 7.5s;
}

.snowflake:nth-child(24) {
    left: 47%;
    animation-duration: 18s;
    animation-delay: 6s;
}

.snowflake:nth-child(25) {
    left: 57%;
    animation-duration: 13s;
    animation-delay: 9s;
}

.snowflake:nth-child(26) {
    left: 67%;
    animation-duration: 15s;
    animation-delay: 7s;
}

.snowflake:nth-child(27) {
    left: 77%;
    animation-duration: 17s;
    animation-delay: 8.5s;
}

.snowflake:nth-child(28) {
    left: 87%;
    animation-duration: 14s;
    animation-delay: 9.5s;
}

.snowflake:nth-child(29) {
    left: 97%;
    animation-duration: 16s;
    animation-delay: 7.5s;
}

.snowflake:nth-child(30) {
    left: 13%;
    animation-duration: 11s;
    animation-delay: 10s;
}

/* Continue pattern for remaining snowflakes */
.snowflake:nth-child(31) {
    left: 23%;
    animation-duration: 15s;
    animation-delay: 9s;
}

.snowflake:nth-child(32) {
    left: 33%;
    animation-duration: 13s;
    animation-delay: 11s;
}

.snowflake:nth-child(33) {
    left: 43%;
    animation-duration: 17s;
    animation-delay: 10.5s;
}

.snowflake:nth-child(34) {
    left: 53%;
    animation-duration: 12s;
    animation-delay: 12s;
}

.snowflake:nth-child(35) {
    left: 63%;
    animation-duration: 14s;
    animation-delay: 11.5s;
}

.snowflake:nth-child(36) {
    left: 73%;
    animation-duration: 16s;
    animation-delay: 10s;
}

.snowflake:nth-child(37) {
    left: 83%;
    animation-duration: 18s;
    animation-delay: 12.5s;
}

.snowflake:nth-child(38) {
    left: 93%;
    animation-duration: 13s;
    animation-delay: 11s;
}

.snowflake:nth-child(39) {
    left: 3%;
    animation-duration: 15s;
    animation-delay: 13s;
}

.snowflake:nth-child(40) {
    left: 8%;
    animation-duration: 17s;
    animation-delay: 12s;
}

/* Snowfall animation */
@keyframes snowfall {
    0% {
        transform: translateY(-10px) translateX(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(25vh) translateX(25px) rotate(90deg);
    }
    50% {
        transform: translateY(50vh) translateX(-15px) rotate(180deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(75vh) translateX(15px) rotate(270deg);
    }
    100% {
        transform: translateY(100vh) translateX(-25px) rotate(360deg);
        opacity: 0.2;
    }
}

/* Enhanced glow effect on hover areas */
.snowflake:hover {
    filter: blur(0px) drop-shadow(0 0 15px rgba(255, 255, 255, 1));
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .snowflake {
        width: 5px;
        height: 5px;
    }
    
    .snowflake:nth-child(n+25) {
        display: none;
    }
}

/* Limited Time Offers Section */
.offers-section {
    background: linear-gradient(135deg, #1a2238 0%, #0a0e17 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(247, 37, 133, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.offers-section .container-fluid {
    position: relative;
    z-index: 2;
}

.offers-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Offers Visual */
.offers-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offers-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.discount-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f72585, #7209b7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(247, 37, 133, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -55%) scale(1.05);
    }
}

.discount-text {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}

.offer-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd166, #ff9e00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
    animation: spin 4s linear infinite;
}

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

.offer-ribbon i {
    color: white;
    font-size: 1.5rem;
}

/* Offers Content */
.offers-content {
    padding-left: 40px;
}

.offers-header {
    margin-bottom: 40px;
}

.offers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f72585, #7209b7);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.offers-badge i {
    font-size: 0.9rem;
}

.offers-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.offers-header p {
    color: #9ca3af;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

/* Offers Features */
.offers-features {
    margin-bottom: 40px;
}

.offer-feature-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #f72585;
}

.offer-feature-main i {
    color: #f72585;
    font-size: 2rem;
    width: 50px;
}

.offer-text h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.offer-text p {
    color: #9ca3af;
    font-size: 1rem;
    margin: 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.offer-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.offer-item:hover {
    background: rgba(247, 37, 133, 0.1);
    border-color: rgba(247, 37, 133, 0.3);
    transform: translateY(-3px);
}

.offer-item i {
    color: #f72585;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.offer-item h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.offer-item p {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Offers Actions */
.offers-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-offer-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f72585, #7209b7);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 25px rgba(247, 37, 133, 0.3);
    transition: all 0.3s ease;
}

.btn-offer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(247, 37, 133, 0.4);
    color: white;
}

.offers-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd166;
    font-weight: 600;
    font-size: 0.9rem;
}

.offers-note i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .offers-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .offers-content {
        padding-left: 0;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .offers-actions {
        justify-content: center;
    }
    
    .offers-graphic {
        width: 250px;
        height: 250px;
    }
    
    .discount-badge {
        width: 180px;
        height: 180px;
    }
    
    .discount-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .offers-section {
        padding: 60px 0;
    }
    
    .offers-header h2 {
        font-size: 2rem;
    }
    
    .offers-header p {
        font-size: 1.1rem;
    }
    
    .btn-offer-primary {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .offers-section {
        padding: 50px 0;
    }
    
    .offers-header h2 {
        font-size: 1.8rem;
    }
    
    .offers-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-offer-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Contact Support Section */
.contact-section {
    background: linear-gradient(135deg, #0a0e17 0%, #1a2238 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(76, 201, 240, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.contact-section .container-fluid {
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    padding-right: 40px;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(76, 201, 240, 0.3);
}

.contact-icon i {
    color: white;
    font-size: 2.5rem;
}

.contact-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-header p {
    color: #9ca3af;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Features */
.contact-features {
    margin-bottom: 40px;
}

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

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    color: #4cc9f0;
    font-size: 1.5rem;
    margin-top: 5px;
    width: 30px;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-contact-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 25px rgba(76, 201, 240, 0.3);
    transition: all 0.3s ease;
}

.btn-contact-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 201, 240, 0.4);
    color: white;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4cc9f0;
    font-weight: 600;
}

.contact-info i {
    font-size: 1.2rem;
}

/* Contact Visual */
.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(76, 201, 240, 0.3);
    position: relative;
    z-index: 2;
}

.graphic-circle i {
    color: white;
    font-size: 4rem;
}

.graphic-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 2px solid rgba(76, 201, 240, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-content {
        padding-right: 0;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-actions {
        justify-content: center;
    }
    
    .visual-graphic {
        width: 250px;
        height: 250px;
    }
    
    .graphic-circle {
        width: 180px;
        height: 180px;
    }
    
    .graphic-circle i {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .btn-contact-primary {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .visual-graphic {
        width: 200px;
        height: 200px;
    }
    
    .graphic-circle {
        width: 150px;
        height: 150px;
    }
    
    .graphic-circle i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
    }
    
    .contact-icon i {
        font-size: 2rem;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-contact-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Tech Processor Section */
.tech-processor-section {
    background: linear-gradient(135deg, #0a0e17 0%, #1a2238 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tech-processor-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.tech-processor-section .container-fluid {
    position: relative;
    z-index: 2;
}

/* Tech Image */
.tech-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.tech-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.tech-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(76, 201, 240, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Tech Content */
.tech-content {
    padding-left: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #4cc9f0, #8be9fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-description {
    color: #9ca3af;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Processor Features Grid */
.processor-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-content p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Tech CTA Buttons */
.tech-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-tech-primary {
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
}

.btn-tech-secondary {
    background: transparent;
    color: #4cc9f0;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #4cc9f0;
}

/* Game Features Section */
.game-features-section {
    background: linear-gradient(135deg, #1a2238 0%, #2a3657 100%);
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    border-radius: 2px;
}

.section-header p {
    color: #9ca3af;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-list {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.feature-item i {
    color: #4cc9f0;
    font-size: 1.3rem;
    width: 30px;
    margin-right: 15px;
}

.feature-item span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

/* Scroll Animation Classes */
.tech-image-wrapper {
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.tech-image-wrapper.animate {
    transform: translateX(0);
    opacity: 1;
}

.tech-content {
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.tech-content.animate {
    transform: translateX(0);
    opacity: 1;
}

.feature-column {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-column.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-column:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-column:nth-child(3) {
    transition-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tech-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .tech-processor-section {
        padding: 80px 0;
    }
    
    .tech-content {
        padding-left: 0;
        padding-top: 50px;
        text-align: center;
    }
    
    .tech-image-wrapper {
        transform: translateY(50px);
    }
    
    .tech-content {
        transform: translateY(50px);
    }
    
    .processor-features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .tech-title {
        font-size: 2rem;
    }
    
    .tech-description {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .btn-tech-primary,
    .btn-tech-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .tech-processor-section {
        padding: 60px 0;
    }
    
    .game-features-section {
        padding: 60px 0;
    }
    
    .tech-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .tech-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-tech-primary,
    .btn-tech-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* View More Button */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-view-more:hover {
    color: white;
    box-shadow: 0 6px 20px rgba(76, 201, 240, 0.5);
    transform: translateY(-2px);
}

.btn-view-more: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 ease;
}

.btn-view-more:hover:before {
    left: 100%;
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

/* Hosting Services Section */
.hosting-services-section {
    background: linear-gradient(0deg, rgba(10, 14, 23, 0.2) 0%, rgba(26, 34, 56, 0.6) 100%);
    padding: 100px 0;
}

.hosting-service-card {
    background: #1a2238;
    border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
}

.hosting-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(76, 201, 240, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hosting-service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-title {
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-description {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-badge {
    background: rgba(76, 201, 240, 0.1);
    color: #4cc9f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(76, 201, 240, 0.2);
}

.service-price {
    color: #4cc9f0;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-btn {
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
    text-decoration: none;
    display: block;
    text-align: center;
}

.service-btn:hover {
    box-shadow: 0 6px 20px rgba(76, 201, 240, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hosting-services-section {
        padding: 80px 0;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
}

/* Testimonials Section Background */
.testimonials-section {
    background: url('https://4kwallpapers.com/images/walls/thumbs_3t/24154.jpg') center/cover no-repeat;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.85);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(26, 34, 56, 0.8);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    background: rgba(26, 34, 56, 0.9);
    border-color: rgba(76, 201, 240, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Locations Section with Blue Tint */
.locations-section {
    background: url('https://ggnodes.xyz/IMG_4399.webp') center/cover no-repeat;
    position: relative;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.9) 0%, rgba(76, 201, 240, 0.1) 100%);
    z-index: 1;
}

.locations-section .container {
    position: relative;
    z-index: 2;
}
