/**
 * PaidooServer - Global Stylesheet
 * File: css/style.css
 * Description: Shared styles across all pages (Dedicated Server, Colocation, etc.)
 */

/* ===== Base ===== */
body {
    font-family: 'Prompt', sans-serif;
    background-color: #0a0e1a;
    color: #e2e8f0;
    overflow-x: hidden;
}

/* ===== Typography ===== */
.gradient-text {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Cards ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.price-card {
    position: relative;
    overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}
.price-card:hover::before { left: 100%; }

/* ===== Hero & Backgrounds ===== */
.hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.grid-pattern {
    background-image: linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ===== Navigation ===== */
.nav-blur {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(12px);
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}
.btn-primary:hover::after { left: 100%; }

/* ===== Features ===== */
.feature-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(139, 92, 246, 0.2));
}

/* ===== Location Cards ===== */
.location-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(255,255,255,0.1);
}
.location-card:hover {
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* ===== Rack Visual ===== */
.rack-visual {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    position: relative;
}
.rack-unit {
    height: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
}
.rack-unit.filled {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.3), rgba(6, 182, 212, 0.3));
    color: #fff;
    font-weight: 600;
}
.rack-unit.yours {
    background: linear-gradient(90deg, rgba(255, 138, 0, 0.4), rgba(255, 138, 0, 0.6));
    color: #fff;
    font-weight: 600;
    border-left: 3px solid #ff8a00;
}

/* ===== Pricing Table ===== */
.pricing-table th {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(139, 92, 246, 0.2));
}
.pricing-table tr:hover td {
    background: rgba(14, 165, 233, 0.05);
}

/* ===== Spec Badges ===== */
.spec-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}
.spec-cpu { background: rgba(14, 165, 233, 0.15); color: #0ea5e9; }
.spec-ram { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.spec-disk { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.spec-net { background: rgba(34, 197, 94, 0.15); color: #22c55e; }

/* ===== Footer ===== */
.footer-section h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a {
    color: #94a3b8;
    transition: color 0.2s;
}
.footer-section ul li a:hover { color: #0ea5e9; }
.footer-section .awesome-icons li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}
.footer-section .awesome-icons i {
    color: #0ea5e9;
    width: 20px;
}

/* ===== Tags ===== */
.tags li {
    display: inline-block;
    margin: 0 5px 8px 0;
}
.tags li a {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: #94a3b8;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.tags li a:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
    color: #0ea5e9;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0e1a; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }