/* =================================
   RESET AND BASE STYLES
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: linear-gradient(135deg, #0f1419 0%, #1a202c 50%, #2d3748 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: white;
    background: linear-gradient(135deg, #0f1419 0%, #1a202c 50%, #2d3748 100%);
    min-height: 100vh;
}

/* =================================
   NAVIGATION
   ================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #3b82f6;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.login-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* =================================
   MAIN LAYOUT
   ================================= */
.main-content {
    padding-top: 100px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

/* =================================
   ANIMATED BACKGROUNDS
   ================================= */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* =================================
   BUTTONS AND INTERACTIVE ELEMENTS
   ================================= */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* =================================
   PAGE HEADERS
   ================================= */
.page-header {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

.page-description {
    max-width: 800px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    animation: fadeIn 1s ease-out 0.4s both;
}

/* =================================
   HOMEPAGE STYLES
   ================================= */

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a202c 50%, #2d3748 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(29, 78, 216, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(67, 56, 202, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: particleFloat 12s linear infinite;
}

.particle:nth-child(1) { left: 5%; width: 4px; height: 4px; animation-delay: 0s; }
.particle:nth-child(2) { left: 15%; width: 3px; height: 3px; animation-delay: 1s; }
.particle:nth-child(3) { left: 25%; width: 6px; height: 6px; animation-delay: 2s; }
.particle:nth-child(4) { left: 35%; width: 2px; height: 2px; animation-delay: 3s; }
.particle:nth-child(5) { left: 45%; width: 5px; height: 5px; animation-delay: 4s; }
.particle:nth-child(6) { left: 55%; width: 3px; height: 3px; animation-delay: 5s; }
.particle:nth-child(7) { left: 65%; width: 4px; height: 4px; animation-delay: 6s; }
.particle:nth-child(8) { left: 75%; width: 2px; height: 2px; animation-delay: 7s; }
.particle:nth-child(9) { left: 85%; width: 5px; height: 5px; animation-delay: 8s; }
.particle:nth-child(10) { left: 95%; width: 3px; height: 3px; animation-delay: 9s; }
.particle:nth-child(11) { left: 10%; width: 4px; height: 4px; animation-delay: 10s; }
.particle:nth-child(12) { left: 20%; width: 2px; height: 2px; animation-delay: 11s; }
.particle:nth-child(13) { left: 30%; width: 6px; height: 6px; animation-delay: 12s; }
.particle:nth-child(14) { left: 40%; width: 3px; height: 3px; animation-delay: 13s; }
.particle:nth-child(15) { left: 50%; width: 4px; height: 4px; animation-delay: 14s; }
.particle:nth-child(16) { left: 60%; width: 2px; height: 2px; animation-delay: 15s; }
.particle:nth-child(17) { left: 70%; width: 5px; height: 5px; animation-delay: 16s; }
.particle:nth-child(18) { left: 80%; width: 3px; height: 3px; animation-delay: 17s; }
.particle:nth-child(19) { left: 90%; width: 4px; height: 4px; animation-delay: 18s; }
.particle:nth-child(20) { left: 12%; width: 3px; height: 3px; animation-delay: 19s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(-20px);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Orbiting Elements */
.orbit-container {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 45s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 60s;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating geometric shapes */
.geometric-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.geo-shape {
    position: absolute;
    opacity: 0.1;
    animation: geometricFloat 25s ease-in-out infinite;
}

.geo-shape:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.geo-shape:nth-child(2) {
    top: 70%;
    right: 10%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    animation-delay: 8s;
}

.geo-shape:nth-child(3) {
    top: 30%;
    right: 20%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #10b981, #059669);
    transform: rotate(45deg);
    animation-delay: 16s;
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-20px) translateX(0px); }
    75% { transform: translateY(-10px) translateX(-5px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.image-content {
    text-align: center;
}

.image-content h3 {
    color: #3b82f6;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.image-content p {
    color: #cbd5e1;
    font-size: 1rem;
}

/* Management Section */
.management-section {
    padding: 8rem 0;
    position: relative;
}

.management-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.management-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.management-content .subtitle {
    color: #a5b4fc;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.management-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.server-visual {
    perspective: 1000px;
}

.servers-container {
    display: flex;
    gap: 1rem;
    animation: serverFloat 6s ease-in-out infinite;
    justify-content: center;
}

.server-rack {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.server-rack::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    border-radius: 4px;
    opacity: 0.8;
}

.server-lights {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.light {
    height: 2px;
    background: #10b981;
    border-radius: 1px;
    animation: serverActivity 2s ease-in-out infinite;
}

.light:nth-child(2) { animation-delay: 0.2s; }
.light:nth-child(3) { animation-delay: 0.4s; }
.light:nth-child(4) { animation-delay: 0.6s; }

@keyframes serverActivity {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes serverFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(5deg); }
}

/* Features Section */
.features-section {
    padding: 8rem 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.feature-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #4a5568, #2d3748);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(74, 85, 104, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.feature-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.feature-placeholder h3 {
    color: #3b82f6;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-placeholder p {
    color: #cbd5e1;
    font-size: 1rem;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Performance Section */
.performance-section {
    padding: 8rem 0;
}

.performance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.performance-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.performance-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.performance-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.perf-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.perf-item p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.performance-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mountain-range {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(45deg, #1e3a8a, #2563eb, #3b82f6);
    clip-path: polygon(0 100%, 20% 60%, 35% 80%, 50% 40%, 70% 70%, 85% 50%, 100% 90%, 100% 100%);
}

.performance-moon {
    position: absolute;
    top: 20%;
    right: 25%;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ddd6fe, #c7d2fe);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(221, 214, 254, 0.6);
}

/* Plans Section */
.plans-section {
    padding: 8rem 0;
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.plans-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
}

.plans-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.plan-feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.plan-feature p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.plans-cta {
    margin-top: 2rem;
}

/* =================================
   FAQ STYLES
   ================================= */

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.faq-header p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.faq-list {
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #60a5fa;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-question:hover::before {
    transform: scaleX(1);
}

.faq-question h3, .question-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
    margin-right: 1rem;
}

.faq-toggle, .toggle-icon {
    color: #3b82f6;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-item.active .faq-toggle,
.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.6);
}

.faq-answer.active {
    padding: 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p, .answer-text {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Page Specific Background */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s linear infinite;
}

.shape:nth-child(1) {
    left: 10%;
    top: 20%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    left: 80%;
    top: 80%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #10b981, #059669);
    transform: rotate(45deg);
    animation-delay: 5s;
}

.shape:nth-child(3) {
    left: 60%;
    top: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    border-radius: 20%;
    animation-delay: 10s;
}

.shape:nth-child(4) {
    left: 20%;
    top: 70%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    border-radius: 50%;
    animation-delay: 15s;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particles .particle {
    position: absolute;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particles .particle:nth-child(1) { left: 5%; width: 3px; height: 3px; animation-delay: 0s; }
.particles .particle:nth-child(2) { left: 15%; width: 4px; height: 4px; animation-delay: 2s; }
.particles .particle:nth-child(3) { left: 25%; width: 2px; height: 2px; animation-delay: 4s; }
.particles .particle:nth-child(4) { left: 35%; width: 5px; height: 5px; animation-delay: 6s; }
.particles .particle:nth-child(5) { left: 45%; width: 3px; height: 3px; animation-delay: 8s; }
.particles .particle:nth-child(6) { left: 55%; width: 4px; height: 4px; animation-delay: 10s; }
.particles .particle:nth-child(7) { left: 65%; width: 2px; height: 2px; animation-delay: 12s; }
.particles .particle:nth-child(8) { left: 75%; width: 3px; height: 3px; animation-delay: 14s; }
.particles .particle:nth-child(9) { left: 85%; width: 4px; height: 4px; animation-delay: 1s; }
.particles .particle:nth-child(10) { left: 95%; width: 3px; height: 3px; animation-delay: 3s; }

/* FAQ Page Help Section */
.help-section {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 24px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 900px;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.help-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: rotate 15s linear infinite;
}

.help-content {
    position: relative;
    z-index: 2;
}

.help-title {
    font-size: 2rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #60a5fa, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.contact-btn.secondary {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-btn.secondary:hover {
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

/* =================================
   CONTACT PAGE STYLES
   ================================= */

/* Contact Particles */
.contact-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.contact-particle {
    position: absolute;
    background: rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    animation: contactFloat 12s linear infinite;
}

.contact-particle:nth-child(1) { left: 10%; width: 4px; height: 4px; animation-delay: 0s; }
.contact-particle:nth-child(2) { left: 25%; width: 6px; height: 6px; animation-delay: 2s; }
.contact-particle:nth-child(3) { left: 40%; width: 3px; height: 3px; animation-delay: 4s; }
.contact-particle:nth-child(4) { left: 55%; width: 5px; height: 5px; animation-delay: 6s; }
.contact-particle:nth-child(5) { left: 70%; width: 4px; height: 4px; animation-delay: 8s; }
.contact-particle:nth-child(6) { left: 85%; width: 3px; height: 3px; animation-delay: 10s; }

@keyframes contactFloat {
    0% {
        transform: translateY(100vh) translateX(-20px);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Contact Methods */
.contact-methods {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* FAQ Quick Access Section for Contact Page */
.faq-quick {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 24px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 800px;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-out;
}

.faq-quick::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: rotate 15s linear infinite;
}

.faq-quick .faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.faq-quick .faq-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.faq-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.faq-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

/* Contact Page Quick Answers Section (backup styling) */
.contact-card.animate-on-scroll:first-child {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

.contact-card.animate-on-scroll:first-child:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
    border-color: #60a5fa;
}

.contact-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
    border-color: #60a5fa;
}

.contact-card.primary {
    border-color: #5865f2 !important;
    background: rgba(88, 101, 242, 0.2) !important;
}

.contact-card.primary:hover {
    border-color: #5865f2 !important;
    box-shadow: 0 25px 50px rgba(88, 101, 242, 0.4) !important;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.contact-card.primary .contact-icon {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.contact-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-btn.discord {
    background: linear-gradient(135deg, #5865f2, #4752c4);
}

.contact-btn.discord:hover {
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
}

/* Social Media Section */
.social-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.social-title {
    font-size: 2rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
    color: #3b82f6;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
}

.social-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* =================================
   ABOUT PAGE STYLES
   ================================= */

/* Cloud Shapes */
.cloud-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    opacity: 0.08;
    animation: cloudFloat 30s ease-in-out infinite;
}

.cloud:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 60px;
    animation-delay: 0s;
}

.cloud:nth-child(1)::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 50px;
}

.cloud:nth-child(1)::after {
    content: '';
    position: absolute;
    top: -20px;
    right: 15px;
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 40px;
}

.cloud:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #ddd6fe, #c7d2fe);
    border-radius: 50px;
    animation-delay: 10s;
}

.cloud:nth-child(3) {
    top: 40%;
    left: 70%;
    width: 120px;
    height: 70px;
    background: linear-gradient(135deg, #fecaca, #fed7d7);
    border-radius: 70px;
    animation-delay: 20s;
}

@keyframes cloudFloat {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    25% {
        transform: translateX(20px) translateY(-10px);
    }
    50% {
        transform: translateX(-10px) translateY(-20px);
    }
    75% {
        transform: translateX(15px) translateY(-5px);
    }
}

/* Sheep Silhouettes */
.sheep-silhouettes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sheep {
    position: absolute;
    opacity: 0.06;
    animation: sheepWalk 25s linear infinite;
}

.sheep:nth-child(1) {
    top: 30%;
    width: 40px;
    height: 30px;
    background: white;
    border-radius: 15px;
    animation-delay: 0s;
}

.sheep:nth-child(2) {
    top: 70%;
    width: 35px;
    height: 25px;
    background: white;
    border-radius: 12px;
    animation-delay: 8s;
}

.sheep:nth-child(3) {
    top: 50%;
    width: 45px;
    height: 35px;
    background: white;
    border-radius: 18px;
    animation-delay: 16s;
}

@keyframes sheepWalk {
    0% {
        left: -50px;
    }
    100% {
        left: 100vw;
    }
}

/* Floating Dots */
.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: dotFloat 15s ease-in-out infinite;
}

.dot:nth-child(1) { top: 15%; left: 25%; width: 4px; height: 4px; animation-delay: 0s; }
.dot:nth-child(2) { top: 35%; left: 75%; width: 6px; height: 6px; animation-delay: 3s; }
.dot:nth-child(3) { top: 55%; left: 15%; width: 3px; height: 3px; animation-delay: 6s; }
.dot:nth-child(4) { top: 75%; left: 85%; width: 5px; height: 5px; animation-delay: 9s; }
.dot:nth-child(5) { top: 25%; left: 60%; width: 4px; height: 4px; animation-delay: 12s; }

@keyframes dotFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px);
        opacity: 0.8;
    }
}

/* About Section */
.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.about-content {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.about-text {
    color: #e2e8f0;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Founders Section */
.founders-section {
    max-width: 1200px;
    margin: 6rem auto 0;
    padding: 0 2rem;
}

.founders-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #60a5fa, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.founder-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-out;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
    border-color: #60a5fa;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.founder-header {
    margin-bottom: 1.5rem;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #60a5fa;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    max-width: 1200px;
    margin: 6rem auto 0;
    padding: 0 2rem 4rem;
}

.values-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.value-description {
    color: #94a3b8;
    line-height: 1.6;
}

/* =================================
   COMMUNITY PAGE STYLES
   ================================= */

/* Stars Background */
.stars-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) { top: 20%; left: 10%; width: 2px; height: 2px; animation-delay: 0s; }
.star:nth-child(2) { top: 30%; left: 80%; width: 3px; height: 3px; animation-delay: 1s; }
.star:nth-child(3) { top: 60%; left: 20%; width: 1px; height: 1px; animation-delay: 2s; }
.star:nth-child(4) { top: 80%; left: 90%; width: 2px; height: 2px; animation-delay: 0.5s; }
.star:nth-child(5) { top: 40%; left: 60%; width: 3px; height: 3px; animation-delay: 1.5s; }
.star:nth-child(6) { top: 10%; left: 50%; width: 2px; height: 2px; animation-delay: 2.5s; }
.star:nth-child(7) { top: 70%; left: 30%; width: 1px; height: 1px; animation-delay: 3s; }
.star:nth-child(8) { top: 50%; left: 5%; width: 2px; height: 2px; animation-delay: 0.8s; }
.star:nth-child(9) { top: 25%; left: 40%; width: 3px; height: 3px; animation-delay: 1.8s; }
.star:nth-child(10) { top: 90%; left: 70%; width: 2px; height: 2px; animation-delay: 2.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Floating Particles for Community */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particles-container .particle {
    position: absolute;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    animation: float-up 15s linear infinite;
}

.particles-container .particle:nth-child(1) { left: 10%; width: 4px; height: 4px; animation-delay: 0s; }
.particles-container .particle:nth-child(2) { left: 20%; width: 6px; height: 6px; animation-delay: 3s; }
.particles-container .particle:nth-child(3) { left: 30%; width: 3px; height: 3px; animation-delay: 6s; }
.particles-container .particle:nth-child(4) { left: 40%; width: 5px; height: 5px; animation-delay: 9s; }
.particles-container .particle:nth-child(5) { left: 50%; width: 4px; height: 4px; animation-delay: 12s; }
.particles-container .particle:nth-child(6) { left: 60%; width: 3px; height: 3px; animation-delay: 2s; }
.particles-container .particle:nth-child(7) { left: 70%; width: 6px; height: 6px; animation-delay: 5s; }
.particles-container .particle:nth-child(8) { left: 80%; width: 4px; height: 4px; animation-delay: 8s; }
.particles-container .particle:nth-child(9) { left: 90%; width: 5px; height: 5px; animation-delay: 11s; }
.particles-container .particle:nth-child(10) { left: 15%; width: 3px; height: 3px; animation-delay: 14s; }

@keyframes float-up {
    0% {
        transform: translateY(100vh) translateX(-20px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Server Grid */
.servers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .servers-grid {
        grid-template-columns: 1fr;
    }
}

.server-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: slide-up 0.6s ease-out;
    /* Fix text blurriness */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    will-change: transform;
}

.server-card:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
    border-color: #60a5fa;
    /* Ensure text stays crisp during hover */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.server-info {
    flex: 1;
}

.server-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

/* Server Status Badge */
.server-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Online Status - Green */
.status-online {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-online .status-dot {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

/* Offline Status - Red */
.status-offline {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-offline .status-dot {
    background: #ef4444;
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.server-connection {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.connection-field {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.connection-field:hover {
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.field-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.field-value {
    color: #f1f5f9;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    user-select: all;
    cursor: pointer;
}

.discord-link {
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.discord-link:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: #5865f2;
}

.discord-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.discord-value {
    color: #5865f2;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-value:hover {
    text-decoration: underline;
}

.server-description {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.3);
    margin-bottom: 1.5rem;
}

.description-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.description-text {
    color: #cbd5e1;
    line-height: 1.6;
}

.copy-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Submit Section */
.submit-section {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 24px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 800px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.submit-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

.submit-content {
    position: relative;
    z-index: 2;
}

.submit-title {
    font-size: 2rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.submit-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.pricing-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

/* ================================= 
   PRICING PAGE STYLES
   ================================= */

/* Pricing Page Animated Background */
.pricing-page {
    position: relative;
}

.pricing-page .animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a202c 50%, #2d3748 100%);
}

/* Floating Circuit Patterns */
.pricing-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.price-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(96, 165, 250, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.4);
    animation: priceFloat 15s linear infinite;
}

.price-particle:nth-child(1) { left: 5%; animation-delay: 0s; }
.price-particle:nth-child(2) { left: 15%; animation-delay: 2s; }
.price-particle:nth-child(3) { left: 25%; animation-delay: 4s; }
.price-particle:nth-child(4) { left: 35%; animation-delay: 6s; }
.price-particle:nth-child(5) { left: 45%; animation-delay: 8s; }
.price-particle:nth-child(6) { left: 55%; animation-delay: 10s; }
.price-particle:nth-child(7) { left: 65%; animation-delay: 12s; }
.price-particle:nth-child(8) { left: 75%; animation-delay: 14s; }
.price-particle:nth-child(9) { left: 85%; animation-delay: 1s; }
.price-particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes priceFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Floating Geometric Shapes */
.calc-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.calc-shape {
    position: absolute;
    opacity: 0.1;
    animation: calcFloat 25s ease-in-out infinite;
}

.calc-shape:nth-child(1) {
    top: 15%;
    left: 8%;
    width: 52px;
    height: 52px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    border-radius: 8px;
    animation-delay: 0s;
}

.calc-shape:nth-child(2) {
    top: 60%;
    right: 12%;
    width: 78px;
    height: 78px;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 50%;
    animation-delay: 8s;
}

.calc-shape:nth-child(3) {
    top: 35%;
    left: 75%;
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    transform: rotate(45deg);
    animation-delay: 16s;
}

.calc-shape:nth-child(4) {
    top: 80%;
    left: 25%;
    width: 58px;
    height: 58px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 12s;
}

@keyframes calcFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

/* Ensure footer shows on pricing page */
.pricing-page .footer {
    position: relative;
    z-index: 3;
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

/* Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 24px;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.pricing-hero:hover {
    border-color: #60a5fa;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.pricing-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 0;
    transition: all 0.5s ease;
}

.pricing-hero:hover .pricing-hero-image {
    opacity: 0.8;
    transform: scale(1.05);
}

.pricing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.6));
    z-index: 1;
    transition: all 0.5s ease;
}

.pricing-hero:hover .pricing-hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4), rgba(30, 41, 59, 0.4));
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
}

.pricing-hero-content h1 {
    color: #f1f5f9;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.pricing-hero:hover .pricing-hero-content h1 {
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-hero {
        min-height: 250px;
        margin: 1rem;
    }
    
    .pricing-hero-content h1 {
        font-size: 1.4rem;
    }
}

/* Billing Type Toggle */
.billing-type-toggle {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 2rem auto 0;
}

.type-btn {
    background: rgba(30, 41, 59, 0.5);
    color: #cbd5e1;
    border: 2px solid rgba(139, 92, 246, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    min-width: 160px;
}

.type-btn:hover {
    border-color: #a78bfa;
    background: rgba(139, 92, 246, 0.1);
}

.type-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    border-color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.type-badge {
    display: block;
    font-size: 0.75rem;
    color: #a78bfa;
    font-weight: 700;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-btn.active .type-badge {
    color: #c4b5fd;
}

/* Billing Options */
.billing-toggle {
    text-align: center;
    margin: 4rem 0;
}

.billing-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.billing-btn {
    background: rgba(30, 41, 59, 0.5);
    color: #cbd5e1;
    border: 2px solid rgba(59, 130, 246, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    min-width: 140px;
}

.billing-btn:hover {
    border-color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
}

.billing-btn.active {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.discount {
    display: block;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 700;
    margin-top: 0.25rem;
}

.billing-btn.active .discount {
    color: #6ee7b7;
}

/* Server Configuration */
.server-config {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.config-section {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.config-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-container {
    margin-bottom: 2.5rem;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f1f5f9;
}

.slider-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(51, 65, 85, 0.8);
    outline: none;
    -webkit-appearance: none;
    position: relative;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
    transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.6);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

/* Price Display */
.price-display {
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.price-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(96, 165, 250, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

.price-content {
    position: relative;
    z-index: 2;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.price-period {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.config-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.config-item {
    background: rgba(30, 41, 59, 0.6);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.config-item-label {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.config-item-value {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 1.1rem;
}

.order-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

/* =================================
   PRICING TIERS
   ================================= */
.pricing-tiers {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.tiers-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.tier-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    border-color: #60a5fa;
}

.tier-card.popular {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.tier-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #10b981, #059669);
}

.popular-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.tier-icon {
    font-size: 2.5rem;
    display: block;
    margin-top: 0.5rem;
}

.tier-specs {
    margin-bottom: 1.5rem;
    flex-grow: 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.spec-value {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 1rem;
}

.tier-pricing {
    margin: 1.5rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-option {
    padding: 1.25rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.price-option:hover {
    border-color: #60a5fa;
    background: rgba(59, 130, 246, 0.05);
}

.standard-price {
    background: rgba(51, 65, 85, 0.3);
}

.premium-price {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    display: none;
}

.premium-price:hover {
    border-color: #a78bfa;
}

.price-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #60a5fa;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.premium-price .price-amount {
    color: #a78bfa;
}

.price-value {
    transition: all 0.3s ease;
}

.price-period {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.price-label {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.tier-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.tier-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.tier-card.popular .tier-btn {
    background: linear-gradient(135deg, #10b981, #059669);
}

.tier-card.popular .tier-btn:hover {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* Show/hide prices based on billing type */
body.billing-type-premium .premium-price {
    display: block;
}

body.billing-type-premium .standard-price {
    display: none;
}

/* Responsive adjustments for pricing tiers */
@media (max-width: 1400px) {
    .tiers-grid {
        gap: 1.25rem;
    }
    
    .pricing-tiers {
        max-width: 1300px;
    }
}

@media (max-width: 1200px) {
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .tier-card {
        padding: 2.5rem 2rem;
    }
    
    .tier-name {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .tier-card {
        margin: 0 0.5rem;
    }

    .tiers-title {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 2rem;
    }
    
    .tier-name {
        font-size: 1.5rem;
    }
    
    .tier-icon {
        font-size: 2rem;
    }
}

/* Community Section for Pricing */
.community-section {
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.community-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.community-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.community-placeholder {
    max-width: 400px;
    height: 300px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-weight: 600;
    border: 2px dashed #64748b;
}

.community-cta {
    color: #60a5fa;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Pricing Features Section */
.pricing-page .features-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 3rem 2rem;
}

.pricing-page .features-container {
    text-align: center;
}

.pricing-page .features-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-page .features-subtitle {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.pricing-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.pricing-page .feature-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-page .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    border-color: #60a5fa;
}

.pricing-page .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.pricing-page .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pricing-page .feature-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.8rem;
}

.pricing-page .feature-description {
    color: #94a3b8;
    line-height: 1.6;
}

/* Update .price-value style - ADD THIS NEW RULE */
.price-value {
    transition: all 0.3s ease;
}

/* Hide premium prices by default - KEEP THESE */
.premium-price {
    display: none;
}

.standard-price {
    display: block;
}

/* When premium billing type is selected - UPDATE THIS */
body.billing-type-premium .premium-price {
    display: block;
}

body.billing-type-premium .standard-price {
    display: none;
}

/* =================================
   CTA SECTION
   ================================= */
.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================================
   FOOTER
   ================================= */
.footer {
    background: #0f172a;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
    color: #3b82f6;
}

.footer .social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
}

/* =================================
   ANIMATIONS
   ================================= */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 1.5rem;
    }
    
    .nav-links.mobile-active {
        transform: translateX(0);
    }

    /* Typography improvements */
    .page-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    /* Layout adjustments */
    .hero-container,
    .community-promo-section,
    .management-container,
    .features-grid,
    .performance-container,
    .plans-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    /* Spacing reductions */
    .page-header,
    .faq-header {
        padding: 2rem 1rem;
    }
    
    .management-section,
    .community-promo-section,
    .features-section,
    .performance-section,
    .plans-section,
    .faq-section {
        padding: 4rem 0;
    }
    
    .management-container,
    .features-container,
    .performance-container,
    .plans-container {
        padding: 2rem 1rem;
    }

    /* Button groups */
    .cta-buttons,
    .cta-buttons-section,
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .performance-features {
        grid-template-columns: 1fr;
    }

    /* Server racks */
    .servers-container {
        gap: 0.5rem;
    }

    .server-rack {
        width: 60px;
        height: 90px;
    }

    /* FAQ Page Mobile */
    .faq-container {
        margin: 0 1rem;
        padding: 2rem 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        flex-wrap: wrap;
    }
    
    .question-text {
        font-size: 1rem;
        margin-right: 0;
        flex: 1;
        min-width: 200px;
    }
    
    .toggle-icon {
        font-size: 1.3rem;
    }
    
    .faq-answer.active {
        padding: 1.2rem;
        max-height: 400px;
    }
    
    .help-section {
        margin: 2rem 1rem;
        padding: 2rem;
    }

    /* Contact Page Mobile */
    .contact-methods {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .social-links {
        gap: 1rem;
        justify-content: center;
    }

    /* About Page Mobile */
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        padding: 2rem;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }

    /* Community Page Mobile */
    .servers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .server-card {
        margin: 0;
        padding: 1.5rem;
    }
    
    .server-connection {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .field-value {
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .copy-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        padding: 0.6rem;
    }
    
    .submit-section {
        margin: 2rem 1rem;
        padding: 2rem;
    }

    /* Pricing Page Mobile */
    .pricing-hero {
        margin: 1rem;
        padding: 2rem;
    }
    
    .config-section {
        padding: 2rem;
        margin: 0 1rem 2rem;
    }
    
    .config-summary {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .config-item {
        padding: 0.8rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .billing-options {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .billing-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .community-section {
        margin: 2rem 1rem;
        padding: 2rem;
    }
    
    .community-placeholder {
        height: 200px;
    }
    
    .pricing-page .features-section {
        padding: 2rem 1rem;
        margin: 4rem 1rem;
    }
    
    .pricing-page .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer .social-links {
        justify-content: center;
    }

    /* Home page tablet/mobile */
    .community-promo-section {
        margin: 0 1rem;
    }

    .management-section {
        margin: 0 1rem;
    }

    .features-section {
        margin: 0 1rem;
    }

    .performance-section {
        margin: 0 1rem;
    }

    .plans-section {
        margin: 0 1rem;
    }

    .cta-section {
        margin: 0 1rem;
    }

    .hero-container {
        margin-top: 6rem; 
        margin-bottom: 1rem;
    }

    /* Contact us page tablet/mobile */
    .faq-quick {
        margin: 0 1rem; 
        margin-bottom: 1rem; 
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .page-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .config-summary {
        grid-template-columns: 1fr;
    }
    
    .billing-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile pricing page fixes */
@media (max-width: 425px) {
    .config-title {
        font-size: 1.5rem;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .price-display {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .price-content {
        width: 100%;
        max-width: 100%;
    }
    
    .order-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        word-wrap: break-word;
    }
    
    .config-summary {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .config-item {
        padding: 0.75rem;
        text-align: center;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
}

@media (max-width: 375px) {
    .order-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .config-item-label {
        font-size: 0.8rem;
    }
    
    .config-item-value {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .config-title {
        font-size: 1.3rem;
        padding: 0 0.5rem;
        text-align: center;
        hyphens: auto;
        word-break: break-word;
    }
    
    .price-display {
        padding: 1.5rem 0.75rem;
        text-align: center;
        overflow: hidden;
    }
    
    .price-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .price-amount {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .price-period {
        font-size: 1rem;
        text-align: center;
    }
    
    .config-summary {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        width: 100%;
        max-width: 100%;
    }
    
    .config-item {
        padding: 0.6rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .config-item-label {
        font-size: 0.75rem;
    }
    
    .config-item-value {
        font-size: 0.9rem;
    }
    
    .order-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    /* Ensure no horizontal overflow */
    .config-section {
        padding: 1.5rem 0.5rem;
        margin: 0 0.5rem 1rem;
        overflow: hidden;
    }
    
    .server-config {
        padding: 0 0.5rem;
    }
}

/* Prevent horizontal overflow on all pricing elements */
@media (max-width: 320px) {
    .pricing-hero,
    .config-section,
    .price-display,
    .billing-options {
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* About page values section mobile fixes */
@media (max-width: 320px) {
    .values-section {
        padding: 4rem 0.5rem;
    }
    
    .values-title {
        font-size: 2rem;
        padding: 0 0.5rem;
        line-height: 1.2;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .value-name {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .value-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Ensure no horizontal overflow */
    .values-section * {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Privacy Policy Page */
/* Animated Background */
        .animated-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        /* Legal Document Particles */
        .legal-particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .legal-particle {
            position: absolute;
            background: rgba(139, 92, 246, 0.3);
            border-radius: 3px;
            animation: documentFloat 20s linear infinite;
        }

        .legal-particle:nth-child(1) { left: 5%; width: 8px; height: 3px; animation-delay: 0s; }
        .legal-particle:nth-child(2) { left: 15%; width: 12px; height: 2px; animation-delay: 4s; }
        .legal-particle:nth-child(3) { left: 25%; width: 6px; height: 4px; animation-delay: 8s; }
        .legal-particle:nth-child(4) { left: 35%; width: 10px; height: 3px; animation-delay: 12s; }
        .legal-particle:nth-child(5) { left: 45%; width: 7px; height: 2px; animation-delay: 16s; }
        .legal-particle:nth-child(6) { left: 55%; width: 9px; height: 3px; animation-delay: 2s; }
        .legal-particle:nth-child(7) { left: 65%; width: 11px; height: 4px; animation-delay: 6s; }
        .legal-particle:nth-child(8) { left: 75%; width: 5px; height: 2px; animation-delay: 10s; }
        .legal-particle:nth-child(9) { left: 85%; width: 8px; height: 3px; animation-delay: 14s; }
        .legal-particle:nth-child(10) { left: 95%; width: 6px; height: 2px; animation-delay: 18s; }

        @keyframes documentFloat {
            0% {
                transform: translateY(100vh) translateX(-10px) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) translateX(10px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Shield Icons */
        .shield-icons {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .shield {
            position: absolute;
            opacity: 0.05;
            animation: shieldFloat 30s ease-in-out infinite;
        }

        .shield:nth-child(1) {
            top: 20%;
            left: 10%;
            width: 40px;
            height: 50px;
            background: linear-gradient(135deg, #10b981, #059669);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            animation-delay: 0s;
        }

        .shield:nth-child(2) {
            top: 60%;
            right: 15%;
            width: 35px;
            height: 45px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            animation-delay: 10s;
        }

        .shield:nth-child(3) {
            top: 40%;
            left: 70%;
            width: 45px;
            height: 55px;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            animation-delay: 20s;
        }

        @keyframes shieldFloat {
            0%, 100% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-15px) translateX(10px) rotate(5deg);
            }
            50% {
                transform: translateY(-30px) translateX(0px) rotate(-5deg);
            }
            75% {
                transform: translateY(-15px) translateX(-10px) rotate(3deg);
            }
        }

        /* Main Content */
        .main-content {
            padding-top: 100px;
            position: relative;
            z-index: 2;
            min-height: 100vh;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            padding: 4rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .page-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            animation: fadeIn 1s ease-out;
        }

        .page-subtitle {
            color: #cbd5e1;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeIn 1s ease-out 0.2s both;
        }

        .last-updated {
            color: #94a3b8;
            font-size: 1rem;
            font-style: italic;
            animation: fadeIn 1s ease-out 0.4s both;
        }

        .intro-text {
            color: #e2e8f0;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: left;
            max-width: 800px;
            margin: 2rem auto 0;
            animation: fadeIn 1s ease-out 0.6s both;
        }

        .questions-contact {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem auto;
            text-align: center;
        }

        .questions-contact strong {
            color: #60a5fa;
            font-size: 1.1rem;
        }

        .contact-email {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-email:hover {
            text-decoration: underline;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Privacy Content */
        .privacy-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }

        .privacy-content {
            background: rgba(30, 41, 59, 0.6);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid rgba(59, 130, 246, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
        }

        .privacy-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .privacy-section {
            margin-bottom: 3rem;
        }

        .privacy-section:last-child {
            margin-bottom: 0;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f1f5f9;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1rem;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }

        .section-content {
            color: #e2e8f0;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .section-content:last-child {
            margin-bottom: 0;
        }

        .subsection {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
            border-left: 2px solid rgba(59, 130, 246, 0.3);
        }

        .subsection-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #60a5fa;
            margin-bottom: 1rem;
        }

        .privacy-list {
            list-style: none;
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .privacy-list li {
            position: relative;
            margin-bottom: 0.8rem;
            color: #cbd5e1;
            line-height: 1.7;
        }

        .privacy-list li::before {
            content: '•';
            position: absolute;
            left: -1rem;
            color: #3b82f6;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .contact-highlight {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .contact-highlight .contact-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #60a5fa;
            margin-bottom: 0.5rem;
        }

        /* Summary Box */
        .summary-box {
            background: rgba(15, 23, 42, 0.8);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-left: 4px solid #10b981;
        }

        .summary-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #10b981;
            margin-bottom: 1rem;
        }

        .summary-text {
            color: #cbd5e1;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .summary-points {
            list-style: none;
            padding-left: 0;
        }

        .summary-points li {
            margin-bottom: 1rem;
            padding-left: 0;
        }

        .summary-points li::before {
            content: none;
        }

        .summary-point-title {
            font-weight: 700;
            color: #60a5fa;
            margin-bottom: 0.3rem;
        }

        /* Table of Contents */
        .toc-section {
            background: rgba(15, 23, 42, 0.8);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .toc-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 1rem;
        }

        .toc-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 0.5rem;
        }

        .toc-item {
            padding: 0.5rem 0;
        }

        .toc-link {
            color: #60a5fa;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .toc-link:hover {
            background: rgba(59, 130, 246, 0.1);
            transform: translateX(5px);
        }

        /* Table Styling */
        .privacy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            overflow: hidden;
        }

        .privacy-table th,
        .privacy-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(59, 130, 246, 0.2);
        }

        .privacy-table th {
            background: rgba(59, 130, 246, 0.2);
            color: #60a5fa;
            font-weight: 700;
            font-size: 1rem;
        }

        .privacy-table td {
            color: #cbd5e1;
            vertical-align: top;
        }

        .privacy-table tr:last-child td {
            border-bottom: none;
        }

        .privacy-table .yes-cell {
            color: #10b981;
            font-weight: 600;
        }

        .privacy-table .no-cell {
            color: #94a3b8;
            font-weight: 600;
        }

        /* Help Section */
        .help-section {
            background: rgba(30, 41, 59, 0.8);
            border-radius: 24px;
            padding: 3rem;
            margin: 4rem auto;
            max-width: 900px;
            text-align: center;
            border: 2px solid rgba(59, 130, 246, 0.3);
            position: relative;
            overflow: hidden;
        }

        .help-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            animation: rotate 15s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .help-content {
            position: relative;
            z-index: 2;
        }

        .help-title {
            font-size: 2rem;
            font-weight: 800;
            color: #f1f5f9;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #60a5fa, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .help-description {
            color: #cbd5e1;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-btn {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
        }

        .contact-btn.secondary {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .contact-btn.secondary:hover {
            box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .privacy-container {
                padding: 0 1rem 4rem;
            }
            
            .privacy-content {
                padding: 2rem;
            }
            
            .toc-list {
                grid-template-columns: 1fr;
            }
            
            .help-section {
                margin: 2rem 1rem;
                padding: 2rem;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }

            .privacy-table {
                font-size: 0.9rem;
            }

            .privacy-table th,
            .privacy-table td {
                padding: 0.75rem 0.5rem;
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

/*Images styling*/
.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.placeholder-image:hover .hero-image {
    opacity: 0.9;
    transform: scale(1.05);
}

.image-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.image-content h3 {
    color: #60a5fa;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.image-content p {
    color: #e2e8f0;
    font-size: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Feature Image Styling */
.feature-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #4a5568, #2d3748);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(74, 85, 104, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.feature-image:hover img {
    opacity: 0.85;
    transform: scale(1.05);
}

.feature-placeholder {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.feature-placeholder h3 {
    color: #3b82f6;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.feature-placeholder p {
    color: #cbd5e1;
    font-size: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Performance Section Image */
.performance-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.performance-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.performance-visual:hover .performance-image {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Plans Section Image */
.plans-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: all 0.5s ease;
}

.plans-container .performance-visual:hover .plans-image {
    opacity: 0.85;
    transform: scale(1.05);
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    .placeholder-image,
    .feature-image {
        height: 300px;
    }
    
    .performance-visual {
        height: 250px;
    }
    
    .image-content h3,
    .feature-placeholder h3 {
        font-size: 1.4rem;
    }
    
    .image-content p,
    .feature-placeholder p {
        font-size: 0.9rem;
    }
}

/* ============================================
   BLOG PAGE STYLES - ADD TO YOUR STYLES.CSS
   ============================================
   
   Instructions:
   1. Copy everything below this comment block
   2. Paste at the END of your existing styles.css file
   3. These styles won't affect other pages
   
   ============================================ */

/* ============================================
   ANIMATED BACKGROUND PARTICLES
   ============================================ */

.animated-bg {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: transparent;
}

.animated-bg .particle {
    position: absolute !important;
    border-radius: 50% !important;
    pointer-events: none;
    filter: blur(40px) !important;
    will-change: transform, opacity;
    display: block !important;
}

.animated-bg .particle-1 {
    width: 250px !important;
    height: 250px !important;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.6) 0%, rgba(59, 130, 246, 0.3) 40%, transparent 70%) !important;
    top: 10% !important;
    left: 10% !important;
    animation: float1 12s infinite ease-in-out !important;
}

.animated-bg .particle-2 {
    width: 180px !important;
    height: 180px !important;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.55) 0%, rgba(139, 92, 246, 0.25) 40%, transparent 70%) !important;
    top: 60% !important;
    right: 15% !important;
    animation: float2 10s infinite ease-in-out !important;
}

.animated-bg .particle-3 {
    width: 300px !important;
    height: 300px !important;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.5) 0%, rgba(99, 102, 241, 0.25) 40%, transparent 70%) !important;
    bottom: 15% !important;
    left: 50% !important;
    animation: float3 15s infinite ease-in-out !important;
}

.animated-bg .particle-4 {
    width: 200px !important;
    height: 200px !important;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.58) 0%, rgba(59, 130, 246, 0.3) 40%, transparent 70%) !important;
    top: 40% !important;
    right: 30% !important;
    animation: float4 11s infinite ease-in-out !important;
}

.animated-bg .particle-5 {
    width: 150px !important;
    height: 150px !important;
    background: radial-gradient(circle at center, rgba(167, 139, 250, 0.6) 0%, rgba(167, 139, 250, 0.3) 40%, transparent 70%) !important;
    bottom: 30% !important;
    left: 20% !important;
    animation: float5 13s infinite ease-in-out !important;
}

.animated-bg .particle-6 {
    width: 220px !important;
    height: 220px !important;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.55) 0%, rgba(96, 165, 250, 0.28) 40%, transparent 70%) !important;
    top: 25% !important;
    left: 60% !important;
    animation: float6 14s infinite ease-in-out !important;
}

.animated-bg .particle-7 {
    width: 170px !important;
    height: 170px !important;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.52) 0%, rgba(124, 58, 237, 0.26) 40%, transparent 70%) !important;
    bottom: 45% !important;
    right: 10% !important;
    animation: float7 16s infinite ease-in-out !important;
}

/* Particle Animation Keyframes */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(80px, -60px) scale(1.3);
        opacity: 0.9;
    }
    66% {
        transform: translate(-50px, 70px) scale(0.8);
        opacity: 0.7;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.65;
    }
    50% {
        transform: translate(-70px, -80px) scale(1.4) rotate(180deg);
        opacity: 0.95;
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.55;
    }
    25% {
        transform: translate(60px, 50px) scale(1.2);
        opacity: 0.85;
    }
    75% {
        transform: translate(-80px, -40px) scale(0.9);
        opacity: 0.7;
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    40% {
        transform: translate(-90px, 60px) scale(1.35) rotate(-90deg);
        opacity: 1;
    }
    80% {
        transform: translate(70px, -50px) scale(0.85) rotate(90deg);
        opacity: 0.75;
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.68;
    }
    30% {
        transform: translate(100px, -70px) scale(1.25);
        opacity: 0.92;
    }
    70% {
        transform: translate(-60px, 80px) scale(0.95);
        opacity: 0.8;
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.62;
    }
    50% {
        transform: translate(-85px, 90px) scale(1.3) rotate(-180deg);
        opacity: 0.88;
    }
}

@keyframes float7 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.58;
    }
    35% {
        transform: translate(75px, 65px) scale(1.28);
        opacity: 0.9;
    }
    65% {
        transform: translate(-95px, -55px) scale(0.88);
        opacity: 0.73;
    }
}

/* ============================================
   BLOG PAGE SPECIFIC STYLES
   ============================================ */

/* Ensure proper spacing and layout for blog page */
.blog-page .content {
    padding-top: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
}

/* Page header improvements */
.blog-page .page-header {
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.blog-page .page-title {
    margin-bottom: 0.5rem;
}

.blog-page .page-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
}

/* Active navigation link for blog page */
.blog-page .nav-links a.active {
    color: #60a5fa;
}

.blog-page .nav-links a.active::after {
    width: 100%;
}

/* ============================================
   SEARCH SECTION
   ============================================ */

.search-section {
    margin-bottom: 3rem;
    animation: fadeIn 0.6s ease-out;
}

.search-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.search-tab:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.search-tab.active {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.search-box {
    width: 100%;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #e0e6ed;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.search-input::placeholder {
    color: #64748b;
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
    font-size: 1.2rem;
}

/* ============================================
   BLOG GRID & CARDS
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
}

.blog-logo {
    width: 80px;
    height: 80px;
    background: rgba(91, 123, 245, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-logo {
    transform: scale(1.1) rotate(5deg);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
    line-height: 1.4;
}

.blog-snippet {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.read-more {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.3);
    align-self: flex-start;
    margin-top: auto;
}

.read-more:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

/* ============================================
   NO RESULTS MESSAGE
   ============================================ */

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeIn 0.5s ease-out;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-results-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: #94a3b8;
    font-size: 1rem;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.page-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: inherit;
    font-size: 0.95rem;
}

.page-btn:hover:not(:disabled) {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #64748b;
    font-weight: 500;
}

.page-number {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.page-number.active {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-weight: 700;
}

.page-separator {
    padding: 0 0.5rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Card entrance animation */
@keyframes cardLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: cardLoad 0.5s ease-out backwards;
}

/* Stagger effect for cards */
.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }
.blog-card:nth-child(7) { animation-delay: 0.7s; }
.blog-card:nth-child(8) { animation-delay: 0.8s; }
.blog-card:nth-child(9) { animation-delay: 0.9s; }
.blog-card:nth-child(10) { animation-delay: 1s; }

/* ============================================
   ACCESSIBILITY - FOCUS STYLES
   ============================================ */

.search-input:focus,
.search-tab:focus,
.page-btn:focus,
.read-more:focus {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-page .content {
        padding: 2rem 1.5rem;
        padding-top: 6rem;
    }

    .blog-page .page-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .blog-page .page-title {
        font-size: 2rem;
    }

    .blog-page .page-subtitle {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .search-header {
        gap: 0.5rem;
    }

    .search-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .blog-image {
        height: 180px;
    }

    .blog-logo {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .blog-snippet {
        font-size: 0.9rem;
    }

    .pagination {
        gap: 0.5rem;
    }

    .page-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .page-numbers {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-page .content {
        padding: 2rem 1rem;
        padding-top: 6rem;
    }
    
    .blog-page .page-header {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .search-header {
        flex-direction: column;
    }

    .search-tab {
        width: 100%;
        text-align: center;
    }

    .search-box {
        max-width: 100%;
    }

    .blog-card {
        margin: 0;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .pagination {
        flex-direction: column;
    }

    .page-numbers {
        order: -1;
        margin-bottom: 1rem;
    }
}

/* ============================================
   END OF BLOG PAGE STYLES
   ============================================ */

/* =================================
   LOGIN PORTAL MAIN PAGE
   ================================= */

/* Login Portal Container */
.login-portal {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.login-container {
    background: rgba(30, 41, 59, 0.6);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-out;
}

.login-container h1 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 800;
}

.login-container .back-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.login-container .back-link:hover {
    color: #3b82f6;
    transform: translateX(-3px);
}

.login-subtitle {
    color: #94a3b8;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.login-button-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-portal-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
}

.login-portal-btn.payment {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.login-portal-btn.payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.login-portal-btn.panel {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.login-portal-btn.panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.login-portal-btn.community {
    background: linear-gradient(135deg, #10b981, #059669);
}

.login-portal-btn.community:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}
.login-icon {
    font-size: 1.5rem;
}

/* Login Portal Particles */
.login-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.login-particle {
    position: absolute;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    animation: loginFloat 15s linear infinite;
}

.login-particle:nth-child(1) { left: 10%; width: 4px; height: 4px; animation-delay: 0s; }
.login-particle:nth-child(2) { left: 25%; width: 6px; height: 6px; animation-delay: 3s; }
.login-particle:nth-child(3) { left: 40%; width: 3px; height: 3px; animation-delay: 6s; }
.login-particle:nth-child(4) { left: 55%; width: 5px; height: 5px; animation-delay: 9s; }
.login-particle:nth-child(5) { left: 70%; width: 4px; height: 4px; animation-delay: 12s; }
.login-particle:nth-child(6) { left: 85%; width: 3px; height: 3px; animation-delay: 2s; }
.login-particle:nth-child(7) { left: 15%; width: 5px; height: 5px; animation-delay: 5s; }
.login-particle:nth-child(8) { left: 60%; width: 4px; height: 4px; animation-delay: 8s; }

@keyframes loginFloat {
    0% {
        transform: translateY(100vh) translateX(-20px);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        padding: 2.5rem 2rem;
        margin: 1rem;
    }

    .login-container h1 {
        font-size: 1.6rem;
    }

    .login-portal-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 2rem 1.5rem;
    }

    .login-container h1 {
        font-size: 1.4rem;
    }

    .login-portal-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   SMOOTH PAGE TRANSITIONS
   Makes navigation feel like one page
   ============================================ */

/* Fade in animation for all pages */
body {
    animation: fadeInPage 0.4s ease-in;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth fade out when clicking links */
body.page-transition {
    animation: fadeOutPage 0.3s ease-out forwards;
}

@keyframes fadeOutPage {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Optional: View Transition API (Modern browsers) */
@view-transition {
    navigation: auto;
}

/* Customize the transition */
::view-transition-old(root) {
    animation: 0.3s ease-out both fade-out;
}

::view-transition-new(root) {
    animation: 0.3s ease-in both fade-in;
}

@keyframes fade-out {
    to { opacity: 0; }
}

@keyframes fade-in {
    from { opacity: 0; }
}

/* ============================================
   BLOG POST PAGE STYLES
   For individual blog post pages
   ============================================ */

/* Back to Blog Link */
.back-to-blog {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding-top: 7rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
}

.back-link:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(-5px);
}

/* Blog Post Container */
.blog-post-container {
    max-width: 900px;
    margin: 0 auto 4rem auto; /* Bottom margin for footer spacing */
    padding: 2rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    animation: fadeIn 0.6s ease;
}

/* Post Header */
.post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.post-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Featured Image/Icon */
.post-featured-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.post-icon {
    font-size: 6rem;
}

/* Post Content */
.post-content {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content h2 {
    color: #60a5fa;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-content h2:first-child {
    margin-top: 0;
}

.post-content h3 {
    color: #7dd3fc;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content strong {
    color: #e2e8f0;
    font-weight: 700;
}

/* Tip Box */
.post-tip {
    background: rgba(59, 130, 246, 0.15);
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

/* Warning Box */
.post-warning {
    background: rgba(239, 68, 68, 0.15);
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

/* Post Footer */
.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.post-share h3 {
    color: #f1f5f9;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
    max-width: 900px;
    margin: 3rem auto 0;
}

.related-posts h2 {
    color: #f1f5f9;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.related-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.related-card h3 {
    color: #f1f5f9;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.related-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-post-container {
        padding: 1.5rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
    
    .post-featured-image {
        height: 200px;
    }
    
    .post-icon {
        font-size: 4rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
    }
}

/* ============================================
   BLOG LISTING PAGE STYLES (Updated)
   Cards are now clickable links
   ============================================ */

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-card-link:hover .blog-card {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
}

.read-more {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.read-more:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Fix white flash from View Transitions API */
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.3s;
}

::view-transition-group(root) {
    animation-duration: 0.3s;
}

/* CRITICAL: Set dark background for view transitions */
::view-transition {
    background: linear-gradient(135deg, #0f1419 0%, #1a202c 50%, #2d3748 100%);
}

/* Alternative: Just use solid dark color */
::view-transition {
    background: #0f1419;
}

/* =================================
   DYNAMIC COMMUNITY SERVERS
   ================================= */

.controls-section {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.controls-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.search-box {
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.8);
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    text-align: left;
}

.search-input::placeholder {
    color: #94a3b8;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    align-self: flex-end;
}

.sort-box label {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sort-select {
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.8);
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    appearance: none;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.sort-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.sort-select:hover {
    border-color: #60a5fa;
    background-color: rgba(15, 23, 42, 0.95);
}

.loading-state, .error-state, .empty-state {
    text-align: center;
    padding: 6rem 2rem;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.loading-state p, .error-state p, .empty-state p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
}

.loader {
    border: 4px solid rgba(59, 130, 246, 0.2);
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.server-banner {
    width: calc(100% + 4rem);
    height: 220px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    margin: -2rem -2rem 1.5rem -2rem;
    border-bottom: 3px solid rgba(59, 130, 246, 0.3);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.page-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(59, 130, 246, 0.3);
}

.page-info {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    .sort-box {
        align-self: stretch;
        justify-content: space-between;
    }
    
    .sort-select {
        flex: 1;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .page-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =================================
   COMMUNITY SERVERS PROMO SECTION
   ================================= */

.community-promo-section {
    padding: 8rem 0;
    position: relative;
}

.community-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.community-mini-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-weight: 600;
    color: #f1f5f9;
    transition: all 0.3s ease;
}

.community-mini-feature:hover {
    border-color: #3b82f6;
    transform: translateX(5px);
    background: rgba(30, 41, 59, 0.8);
}

.mini-icon {
    font-size: 1.3rem;
}

.community-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Preview Cards */
.community-preview-cards {
    position: relative;
    height: 450px;
}

.preview-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    min-width: 220px;
}

.preview-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
    z-index: 10;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.card-info {
    text-align: center;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.card-status {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.card-status.online {
    color: #10b981;
}

.card-status.offline {
    color: #ef4444;
}

/* Card Positions & Animations */
.preview-card-1 {
    top: 30px;
    left: 50px;
    animation: float 4s ease-in-out infinite;
}

.preview-card-2 {
    top: 140px;
    right: 60px;
    animation: float 4s ease-in-out infinite 1s;
}

.preview-card-3 {
    bottom: 120px;
    left: 40px;
    animation: float 4s ease-in-out infinite 2s;
}

.preview-card-4 {
    bottom: 30px;
    right: 50px;
    animation: float 4s ease-in-out infinite 3s;
}

/* Responsive */
@media (max-width: 1024px) {
    .community-features-list {
        grid-template-columns: 1fr;
    }
    
    .community-preview-cards {
        height: 350px;
        margin-top: 2rem;
    }
    
    .preview-card {
        min-width: 180px;
        padding: 1.2rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .community-cta-buttons {
        flex-direction: column;
    }
    
    .community-cta-buttons .btn-primary,
    .community-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .community-preview-cards {
        display: none;
    }
}

/* =================================
   DOCUMENTATION PAGE STYLES
   ================================= */

/* Hero Section */
.docs-hero-section {
    padding: 4rem 2rem;
    padding-top: calc(4rem + 70px); /* 70px = navbar height + 1rem padding */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
}

.docs-hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.docs-hero-heading {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.docs-hero-description {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Section */
.docs-page-section {
    padding: 4rem 2rem;
    background: rgba(15, 23, 42, 0.5);
}

.docs-layout-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.docs-two-column {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar */
.docs-sidebar-wrapper {
    position: sticky;
    top: calc(70px + 2rem);
    height: fit-content;
}

.docs-sidebar-nav {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.docs-sidebar-title {
    color: #3b82f6;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.docs-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-sidebar-list li {
    margin-bottom: 0.8rem;
}

.docs-sidebar-link {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.docs-sidebar-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

/* Main Content */
.docs-main-content {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.docs-article-section {
    margin-bottom: 4rem;
}

.docs-article-section:last-child {
    margin-bottom: 0;
}

.docs-section-heading {
    color: #3b82f6;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.docs-subsection-heading {
    color: #f1f5f9;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.docs-paragraph {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Step Cards */
.docs-step-card {
    background: rgba(15, 23, 42, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.docs-step-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.docs-step-blue {
    border-left-color: #3b82f6;
}

.docs-step-green {
    border-left-color: #10b981;
}

.docs-step-orange {
    border-left-color: #f59e0b;
}

.docs-step-yellow {
    border-left-color: #ffea99;
}

.docs-step-purple {
    border-left-color: #8b5cf6;
}

.docs-step-pink {
    border-left-color: #ec4899;
}

.docs-step-title {
    color: #f1f5f9;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.docs-step-text {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Info Boxes */
.docs-info-box {
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.docs-info-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.docs-info-title {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.docs-info-list {
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
    padding-left: 1.5rem;
}

.docs-info-list li {
    margin-bottom: 0.5rem;
}

/* Links */
.docs-inline-link {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.docs-link-blue {
    color: #3b82f6;
}

.docs-link-blue:hover {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
}

.docs-link-green {
    color: #10b981;
}

.docs-link-green:hover {
    color: #34d399;
    border-bottom-color: #34d399;
}

/* Code Inline */
.docs-code-inline {
    background: rgba(15, 23, 42, 0.8);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    color: #ec4899;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .docs-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .docs-sidebar-wrapper {
        position: static;
    }
    
    .docs-main-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .docs-hero-heading {
        font-size: 2.5rem;
    }
    
    .docs-hero-description {
        font-size: 1.1rem;
    }
    
    .docs-section-heading {
        font-size: 1.75rem;
    }
    
    .docs-subsection-heading {
        font-size: 1.3rem;
    }
    
    .docs-main-content {
        padding: 1.5rem;
    }
    
    .docs-step-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .docs-page-section {
        padding: 2rem 1rem;
    }
    
    .docs-hero-section {
        padding: 3rem 1rem;
    }
}