/* Custom Properties */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --tertiary-color: #06b6d4;
    --quaternary-color: #10b981;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --secondary-glow: rgba(139, 92, 246, 0.5);
    --accent-glow: rgba(236, 72, 153, 0.5);
    --nav-height: 5rem;
    --transition-speed: 0.3s;
    --hover-glow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar Animations */
.nav-link {
    position: relative;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    background: transparent;
    overflow: hidden;
}

.nav-link .material-icons {
    font-size: 1.25rem !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link span:not(.material-icons) {
    position: relative;
    z-index: 1;
}

.nav-link::before,
.nav-link::after {
    content: '';
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-color),
        var(--secondary-color),
        var(--primary-color),
        transparent
    );
    bottom: 0;
    left: 0;
    transform: scaleX(0);
}

.nav-link::after {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(139, 92, 246, 0.1),
        rgba(236, 72, 153, 0.05)
    );
    top: -100%;
    left: 0;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.nav-link:hover::after,
.nav-link.active::after {
    top: 0;
}

.nav-link:hover .material-icons,
.nav-link.active .material-icons {
    transform: translateY(-2px) scale(1.1);
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    text-shadow: 0 0 8px var(--accent-glow);
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.15);
}

.nav-link.active {
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.1),
        rgba(139, 92, 246, 0.1),
        rgba(236, 72, 153, 0.1)
    );
    font-weight: 600;
}

/* Login Button Styles */
.login-btn {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: linear-gradient(45deg, 
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.025em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.login-btn::before,
.login-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-btn::before {
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
}

.login-btn::after {
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(100%);
}

.login-btn:hover::before {
    transform: translateX(100%);
}

.login-btn:hover::after {
    transform: translateX(-100%);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px var(--primary-glow),
        0 0 30px var(--secondary-glow),
        0 0 40px var(--accent-glow);
    border-color: rgba(255, 255, 255, 0.3);
}

.login-btn:hover .material-icons {
    animation: iconFloat 1s ease infinite;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-btn:active {
    transform: translateY(0);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px) scale(1.1);
    }
}

/* Logo Animation */
.logo {
    transition: all var(--transition-speed) ease;
    position: relative;
    display: block;
}

.logo img {
    transition: transform var(--transition-speed) ease;
    height: 2.5rem;
    width: auto;
}

.logo:hover img {
    transform: scale(1.05);
    filter: 
        drop-shadow(0 0 8px var(--primary-glow))
        drop-shadow(0 0 12px var(--secondary-glow))
        drop-shadow(0 0 16px var(--accent-glow));
}

/* Mobile Menu Styles */
.mobile-menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 60;
}

.mobile-menu.hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.mobile-menu-button {
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-button:hover {
    transform: rotate(90deg);
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

.mobile-menu-button.active {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/* Mobile Menu Items */
.mobile-menu-item {
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        transparent
    );
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}

.mobile-menu-item:hover::after {
    transform: scaleX(1);
}

/* Navbar Glass Effect */
.navbar-glass {
    background: linear-gradient(
        90deg,
        rgba(31, 41, 55, 0.8),
        rgba(59, 130, 246, 0.05),
        rgba(139, 92, 246, 0.05),
        rgba(236, 72, 153, 0.05),
        rgba(31, 41, 55, 0.8)
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        var(--tertiary-color),
        var(--quaternary-color),
        var(--primary-color)
    );
    background-size: 600% 100%;
    animation: gradientBG 30s linear infinite;
    opacity: 0.05;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.navbar-glass:hover::before {
    opacity: 0.1;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 600% 50%;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.95),
        rgba(17, 24, 39, 0.98)
    );
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.15;
    transform: translateX(10%);
    animation: imageFloat 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.explore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

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

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px var(--primary-glow),
        0 0 30px var(--secondary-glow);
}

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

.explore-btn .material-icons {
    transition: transform 0.3s ease;
}

.explore-btn:hover .material-icons {
    transform: translateX(5px);
}

/* Floating Animation */
@keyframes imageFloat {
    0%, 100% {
        transform: translateX(10%) translateY(0);
    }
    50% {
        transform: translateX(10%) translateY(-20px);
    }
}

/* Title Glow Animation */
@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--primary-glow));
    }
    50% {
        filter: drop-shadow(0 0 30px var(--accent-glow));
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Particle Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-image {
        width: 100%;
        opacity: 0.1;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.98),
        rgba(17, 24, 39, 0.95)
    );
    overflow: hidden;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.pricing-toggle-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-toggle-btn.active {
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    isolation: isolate;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    min-height: 400px;
    background-attachment: fixed;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 24, 39, 0.85),
        rgba(31, 41, 55, 0.98)
    );
    z-index: -1;
    transition: all 0.5s ease;
}

.pricing-card:hover::before {
    background: linear-gradient(
        180deg,
        rgba(17, 24, 39, 0.7),
        rgba(31, 41, 55, 0.9)
    );
}

.pricing-card-content {
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover .pricing-card-content {
    transform: translateY(-10px);
}

.pricing-card-header {
    text-align: center;
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.pricing-card-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 20px var(--accent-glow);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.pricing-card-price.active {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card-price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.pricing-card-features {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.pricing-card-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.pricing-card-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Pricing Card Button Styles */
.pricing-card-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pricing-card-button {
    width: 80%;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(
        45deg,
        var(--accent-color),
        var(--tertiary-color)
    );
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.buy-now-btn {
    background: linear-gradient(
        45deg,
        var(--accent-color),
        var(--tertiary-color)
    );
    background-size: 200% auto;
    animation: gradientShift 5s ease infinite;
}

.pricing-card-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 20px var(--accent-glow),
        0 0 30px var(--tertiary-color);
    border-color: rgba(255, 255, 255, 0.3);
    background-position: right center;
}

.pricing-card-button .material-icons {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.pricing-card-button:hover .material-icons {
    transform: translateX(3px) scale(1.1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 0 30px var(--primary-glow),
        0 0 50px var(--secondary-glow);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        min-height: 350px;
        height: auto;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.98),
        rgba(17, 24, 39, 0.95)
    );
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        transparent
    );
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        rgba(139, 92, 246, 0.1),
        rgba(236, 72, 153, 0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 20px var(--primary-glow),
        0 0 30px var(--secondary-glow);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-icon {
    font-size: 2rem !important;
    color: white;
    transition: transform 0.3s ease;
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.feature-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    background: linear-gradient(
        45deg,
        var(--accent-color),
        var(--tertiary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .stat-value {
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
}

/* Server Map Section */
.server-map-section {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.98),
        rgba(17, 24, 39, 0.95)
    );
    position: relative;
    overflow: hidden;
}

.server-map-container {
    position: relative;
    margin-top: 2rem;
}

.server-map {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.world-map-bg {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgODAwIDQwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjAwLDEwMCBMMzAwLDE1MCBMNDAwLDEwMCBMNTAwLDE1MCBMNjAwLDEwMCIgc3Ryb2tlPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMSkiIGZpbGw9Im5vbmUiLz48L3N2Zz4=');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.server-location {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.location-pulse {
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-pulse::before,
.location-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: pulse 2s ease-out infinite;
    opacity: 0.6;
}

.location-pulse::after {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.location-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.location-info h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.location-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.ping {
    color: var(--accent-color);
    font-weight: 600;
}

.server-location:hover .location-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.connection-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.connection-path {
    stroke: var(--accent-color);
    stroke-width: 0.5;
    fill: none;
    opacity: 0.3;
    stroke-dasharray: 4 2;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.server-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 20px var(--primary-glow),
        0 0 30px var(--secondary-glow);
}

.stat-card .material-icons {
    font-size: 2rem;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-content h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.stat-content .stat-value {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(
        45deg,
        var(--accent-color),
        var(--tertiary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
    .server-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .server-map {
        height: 300px;
    }
    
    .server-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        min-width: 120px;
    }
}

/* Statistics Counter Section */
.stats-counter-section {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.98),
        rgba(17, 24, 39, 0.95)
    );
    position: relative;
    overflow: hidden;
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        transparent
    );
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.counter-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.counter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        rgba(139, 92, 246, 0.1),
        rgba(236, 72, 153, 0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.counter-card:hover::before {
    transform: translateX(100%);
}

.counter-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 30px var(--primary-glow),
        0 0 50px var(--secondary-glow);
}

.counter-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.counter-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.counter-card:hover .counter-icon-wrapper::before {
    opacity: 1;
}

.counter-icon-wrapper .material-icons {
    font-size: 2.5rem !important;
    color: white;
    transition: transform 0.3s ease;
}

.counter-card:hover .counter-icon-wrapper .material-icons {
    transform: scale(1.1);
}

.counter-content {
    position: relative;
}

.counter-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.counter-value.percentage::after {
    content: '%';
    font-size: 2rem;
    margin-left: 0.25rem;
}

.counter-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.counter-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-counter-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-card {
        padding: 2rem;
    }
    
    .counter-value {
        font-size: 3rem;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.98),
        rgba(17, 24, 39, 0.95)
    );
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        transparent
    );
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
    filter: 
        drop-shadow(0 0 8px var(--primary-glow))
        drop-shadow(0 0 12px var(--secondary-glow));
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    color: var(--accent-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

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

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-icon {
    height: 30px;
    width: auto;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
}

.payment-icon:hover {
    filter: grayscale(0%) brightness(1);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link .material-icons {
    font-size: 1.25rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 20px var(--primary-glow),
        0 0 30px var(--secondary-glow);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover .material-icons {
    transform: scale(1.2);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.credits {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.designer-link {
    color: white;
    text-decoration: none;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.designer-link:hover {
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* DDoS Hero Section */
.ddos-hero-section {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.98),
        rgba(17, 24, 39, 0.95)
    );
    position: relative;
    overflow: hidden;
}

/* Protection Features */
.protection-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.protection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        rgba(139, 92, 246, 0.1),
        rgba(236, 72, 153, 0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.protection-card:hover::before {
    transform: translateX(100%);
}

.protection-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 20px var(--primary-glow),
        0 0 30px var(--secondary-glow);
}

.protection-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.protection-icon-wrapper .material-icons {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.protection-card:hover .protection-icon-wrapper .material-icons {
    transform: scale(1.1);
}

.protection-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.protection-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.protection-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.protection-features-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.protection-features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Protection Stats */
.protection-stats {
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.98),
        rgba(17, 24, 39, 0.95)
    );
    position: relative;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 20px var(--primary-glow),
        0 0 30px var(--secondary-glow);
}

.stat-icon {
    font-size: 2.5rem !important;
    margin-bottom: 1rem;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(
        45deg,
        var(--accent-color),
        var(--tertiary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Protection Process */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step-icon .material-icons {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 
        0 0 30px var(--primary-glow),
        0 0 40px var(--secondary-glow);
}

.process-step:hover .step-icon::before {
    opacity: 1;
}

.process-step:hover .step-icon .material-icons {
    transform: scale(1.1);
    animation: monitorPulse 2s infinite;
}

@keyframes monitorPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Additional Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 20px var(--primary-glow),
        0 0 30px var(--secondary-glow);
}

.feature-item .material-icons {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Responsive Styles for DDoS Page */
@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .protection-card {
        padding: 1.5rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

.register-btn {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border: 1px solid rgba(147, 51, 234, 0.2);
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.15);
}

/* Registration and Login Form Styles */
.register-section,
.login-section {
    min-height: calc(100vh - var(--nav-height) - 5rem);
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.97), rgba(31, 41, 55, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.register-section::before,
.login-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdHRlcm4gaWQ9InBhdHRlcm4iIHg9IjAiIHk9IjAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxjaXJjbGUgY3g9IjEiIGN5PSIxIiByPSIwLjUiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wMykiLz4KPC9wYXR0ZXJuPgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIiAvPgo8L3N2Zz4=');
    opacity: 0.3;
    z-index: -1;
}

.register-form-container,
.login-form-container {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    z-index: 2;
}

.register-form-container::before,
.login-form-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.register-form-container:hover::before,
.login-form-container:hover::before {
    opacity: 0.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-checkbox {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    cursor: pointer;
    width: 1rem;
    height: 1rem;
}

.form-checkbox:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.password-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
}

.password-toggle:focus {
    outline: none;
}

/* Register Button Styles */
.register-btn, 
.login-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, 
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.register-btn:hover,
.login-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 0 20px var(--primary-glow),
        0 0 30px var(--secondary-glow),
        0 0 40px var(--accent-glow);
    border-color: rgba(255, 255, 255, 0.3);
}

.register-btn .material-icons,
.login-btn .material-icons {
    transition: all 0.3s ease;
}

.register-btn:hover .material-icons,
.login-btn:hover .material-icons {
    transform: translateX(3px);
}

/* Alert Styles */
.alert-error,
.alert-success {
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInDown 0.5s forwards;
}

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

/* Additional form animations */
.register-form-container,
.login-form-container {
    animation: formAppear 0.5s ease-out forwards;
    transform: translateY(20px);
    opacity: 0;
}

@keyframes formAppear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .register-section,
    .login-section {
        padding: 2rem 1rem;
    }
    
    .register-form-container,
    .login-form-container {
        padding: 1.5rem;
    }
}

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
}

.user-menu-btn {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.user-menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.user-menu-btn:hover::before {
    opacity: 0.1;
}

.user-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.user-dropdown-menu {
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.user-dropdown-menu:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.user-dropdown-menu a {
    position: relative;
    overflow: hidden;
}

.user-dropdown-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.user-dropdown-menu a:hover::before {
    opacity: 0.1;
}

.user-dropdown-menu a:hover .material-icons {
    transform: translateX(3px);
}

.user-dropdown-menu .material-icons {
    transition: transform 0.3s ease;
}

/* Responsive adjustments for user dropdown */
@media (max-width: 768px) {
    .user-dropdown {
        position: static;
    }
    
    .user-dropdown-menu {
        width: 100%;
    }
}
