/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0015;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Animated Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: #7B3FE0;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out, pulse 3s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(123, 63, 224, 0.8);
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    25% { transform: translateY(-100px) translateX(50px) scale(1.2); }
    50% { transform: translateY(-200px) translateX(-50px) scale(0.8); }
    75% { transform: translateY(-100px) translateX(100px) scale(1.5); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 0, 21, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(123, 63, 224, 0.2);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(123, 63, 224, 0.4));
    animation: float-logo 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 4px 25px rgba(123, 63, 224, 0.6));
}

@keyframes float-logo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #b399ff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7B3FE0 0%, #4B1E9C 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #7B3FE0 0%, #4B1E9C 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(123, 63, 224, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(123, 63, 224, 0.6);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #7B3FE0 0%, #d4c5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #b399ff;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary-large {
    background: linear-gradient(135deg, #7B3FE0 0%, #4B1E9C 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(123, 63, 224, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(123, 63, 224, 0.7);
}

.btn-primary-large .arrow {
    transition: transform 0.3s ease;
    font-size: 20px;
}

.btn-primary-large:hover .arrow {
    transform: translateX(5px);
}

.btn-secondary {
    background: rgba(123, 63, 224, 0.1);
    color: #ffffff;
    border: 2px solid #7B3FE0;
    padding: 16px 38px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(123, 63, 224, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 63, 224, 0.4);
}

/* Hero Right - Circle Graphic */
.hero-right {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.circle-graphic {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.circle-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 3px solid #7B3FE0;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 40px rgba(123, 63, 224, 0.5);
}

.circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 63, 224, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-circle 4s ease-in-out infinite;
}

.circle-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 0 30px rgba(123, 63, 224, 0.8));
    animation: rotate-logo 20s linear infinite, float-center-logo 4s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@keyframes rotate-logo {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float-center-logo {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(123, 63, 224, 0.8));
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(123, 63, 224, 1));
    }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse-circle {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

.floating-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #7B3FE0 0%, #4B1E9C 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(123, 63, 224, 0.8);
    animation: float-dot 8s ease-in-out infinite;
}

.dot-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.dot-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.dot-3 {
    top: 30%;
    left: 5%;
    width: 15px;
    height: 15px;
    animation-delay: 4s;
}

.dot-4 {
    bottom: 30%;
    right: 10%;
    width: 25px;
    height: 25px;
    animation-delay: 6s;
}

@keyframes float-dot {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-30px) translateX(5px); }
}

/* Stats */
.stats {
    display: flex;
    gap: 80px;
    margin-top: 80px;
    padding: 40px;
    background: rgba(123, 63, 224, 0.05);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 63, 224, 0.2);
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #7B3FE0 0%, #d4c5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #b399ff;
    font-weight: 500;
}

/* Sections */
.section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #7B3FE0 0%, #b399ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

/* Servers Section */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.server-card {
    background: linear-gradient(135deg, rgba(75, 30, 156, 0.4) 0%, rgba(123, 63, 224, 0.2) 100%);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(123, 63, 224, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.server-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.server-card:hover::before {
    left: 100%;
}

.server-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(123, 63, 224, 0.6);
    border-color: #7B3FE0;
}

.server-status {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.status-online {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #001a0d;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.status-soon {
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    color: #1a0800;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.5);
}

.server-name {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.server-card:hover .server-name {
    color: #b399ff;
}

.server-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #b399ff;
    transition: all 0.3s ease;
}

.server-card:hover .server-desc {
    color: #d4c5ff;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #b399ff;
}

.about-content p {
    transition: all 0.3s ease;
}

.about-content p:hover {
    color: #ffffff;
    transform: scale(1.02);
}

/* Partnership Section */
.partnership-section {
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.3) 0%, rgba(136, 14, 79, 0.5) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(194, 24, 91, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(136, 14, 79, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.partnership-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.7) 0%, rgba(136, 14, 79, 0.7) 100%);
    border: 2px solid rgba(194, 24, 91, 0.6);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(194, 24, 91, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #C2185B, #880E4F, #C2185B, #880E4F);
    background-size: 300% 300%;
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientRotate 4s linear infinite;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(194, 24, 91, 0.7);
    border-color: #C2185B;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(194, 24, 91, 0.4);
}

.partner-logo {
    flex-shrink: 0;
}

.partner-logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    box-shadow: 0 8px 30px rgba(194, 24, 91, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1);
}

.partner-card:hover .partner-logo-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(194, 24, 91, 0.8);
    filter: brightness(1.1);
}

.partner-info {
    flex: 1;
}

.partner-name {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #d4c5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #C2185B 0%, #880E4F 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.partner-description {
    margin-bottom: 35px;
}

.partner-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffcce0;
    margin-bottom: 25px;
}

.partner-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.partner-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #ffb3d9;
    padding: 12px 20px;
    background: rgba(194, 24, 91, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(194, 24, 91, 0.4);
    transition: all 0.3s ease;
}

.partner-features li:hover {
    background: rgba(194, 24, 91, 0.35);
    transform: translateX(5px);
    color: #ffffff;
    border-color: #C2185B;
}

.partner-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-partner-primary {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #C2185B 0%, #880E4F 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(194, 24, 91, 0.5);
    display: inline-block;
}

.btn-partner-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(194, 24, 91, 0.7);
    background: linear-gradient(135deg, #D81B60 0%, #C2185B 100%);
}

.btn-partner-secondary {
    flex: 1;
    min-width: 200px;
    background: rgba(194, 24, 91, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border: 2px solid #C2185B;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.btn-partner-secondary:hover {
    background: rgba(194, 24, 91, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.5);
    border-color: #D81B60;
}

/* Links Section */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.link-card {
    background: linear-gradient(135deg, rgba(123, 63, 224, 0.2) 0%, rgba(75, 30, 156, 0.2) 100%);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid rgba(123, 63, 224, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.link-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7B3FE0 0%, #4B1E9C 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.link-card:hover::after {
    transform: scaleX(1);
}

.link-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(123, 63, 224, 0.6);
    border-color: #7B3FE0;
    background: linear-gradient(135deg, rgba(123, 63, 224, 0.3) 0%, rgba(75, 30, 156, 0.3) 100%);
}

.link-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(123, 63, 224, 0.5));
}

.link-card:hover .link-icon {
    transform: scale(1.2) rotateY(360deg);
}

.link-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.link-card:hover .link-title {
    color: #b399ff;
}

.link-desc {
    font-size: 14px;
    color: #b399ff;
    transition: all 0.3s ease;
}

.link-card:hover .link-desc {
    color: #d4c5ff;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(123, 63, 224, 0.2);
    margin-top: 100px;
}

.footer p {
    color: #b399ff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer p:hover {
    color: #ffffff;
}

.footer-sub {
    font-size: 14px;
    opacity: 0.7;
}

/* Modal Window */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    z-index: 10001;
    background: linear-gradient(135deg, rgba(75, 30, 156, 0.95) 0%, rgba(45, 18, 80, 0.95) 100%);
    border: 2px solid rgba(123, 63, 224, 0.6);
    border-radius: 30px;
    padding: 50px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(123, 63, 224, 0.6);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(123, 63, 224, 0.5);
    color: #ffffff;
    font-size: 32px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: rgba(123, 63, 224, 0.3);
    border-color: #7B3FE0;
    transform: rotate(90deg) scale(1.1);
}

.modal-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #7B3FE0 0%, #b399ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    text-align: center;
    color: #b399ff;
    font-size: 18px;
    margin-bottom: 40px;
}

.server-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.server-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(123, 63, 224, 0.2) 0%, rgba(75, 30, 156, 0.2) 100%);
    border: 2px solid rgba(123, 63, 224, 0.4);
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.server-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 63, 224, 0.2), transparent);
    transition: left 0.5s ease;
}

.server-option:hover::before {
    left: 100%;
}

.server-option:hover {
    transform: translateX(10px) scale(1.02);
    border-color: #7B3FE0;
    box-shadow: 0 10px 40px rgba(123, 63, 224, 0.4);
    background: linear-gradient(135deg, rgba(123, 63, 224, 0.3) 0%, rgba(75, 30, 156, 0.3) 100%);
}

.server-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.server-option-icon {
    font-size: 48px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 63, 224, 0.3);
    border-radius: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.server-option:hover .server-option-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(123, 63, 224, 0.5);
}

.server-option-content {
    flex: 1;
}

.server-option-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #ffffff;
}

.server-option-content p {
    font-size: 14px;
    color: #b399ff;
    margin-bottom: 10px;
}

.server-option-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.server-option-status.online {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #001a0d;
}

.server-option-status.soon {
    background: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    color: #1a0800;
}

.server-option-arrow {
    font-size: 32px;
    color: #7B3FE0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.server-option:hover .server-option-arrow {
    transform: translateX(10px);
    color: #b399ff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0015;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #7B3FE0 0%, #4B1E9C 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b399ff 0%, #7B3FE0 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .circle-graphic {
        width: 400px;
        height: 400px;
    }
    
    .circle-outer {
        width: 350px;
        height: 350px;
    }
    
    .circle-inner {
        width: 250px;
        height: 250px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-large,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .circle-graphic {
        width: 300px;
        height: 300px;
    }
    
    .circle-outer {
        width: 250px;
        height: 250px;
    }
    
    .circle-inner {
        width: 180px;
        height: 180px;
    }
    
    .circle-logo {
        width: 120px;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .servers-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        padding: 30px;
    }
    
    .partner-header {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-name {
        font-size: 28px;
    }
    
    .partner-features {
        grid-template-columns: 1fr;
    }
    
    .partner-actions {
        flex-direction: column;
    }
    
    .btn-partner-primary,
    .btn-partner-secondary {
        width: 100%;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 28px;
    }
    
    .modal-subtitle {
        font-size: 16px;
    }
    
    .server-option {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .server-option-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .server-option-content h3 {
        font-size: 18px;
    }
    
    .server-option-arrow {
        display: none;
    }
}
