/* ==========================================
   CEZER INDEX — PROFESSIONAL HOSTING PAGE
   ========================================== */

/* ---- HERO SECTION ---- */
.index-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

.index-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(228, 226, 221, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(228, 226, 221, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 70%);
}

.index-hero .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: heroOrbFloat 10s ease-in-out infinite;
    will-change: transform;
    contain: layout style;
}

.index-hero .hero-orb-1 {
    top: 10%;
    left: 60%;
    width: 500px;
    height: 500px;
    background: rgba(228, 226, 221, 0.4);
}

.index-hero .hero-orb-2 {
    bottom: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(167, 94, 234, 0.3);
    animation-delay: 3s;
}

.index-hero .hero-orb-3 {
    top: 50%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: rgba(32, 191, 108, 0.2);
    animation-delay: 6s;
}

@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.index-hero-content {
    position: relative;
    z-index: 10;
    min-height: 420px;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(228, 226, 221, 0.06);
    border: 1px solid rgba(228, 226, 221, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    min-height: 38px;
}

.trust-pulse {
    width: 8px;
    height: 8px;
    background: #20bf6c;
    border-radius: 50%;
    animation: trustPulse 2s ease infinite;
}

@keyframes trustPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(32, 191, 108, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(32, 191, 108, 0); }
}

.index-hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #a8a69f 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.index-hero-desc {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(228, 226, 221, 0.25);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(228, 226, 221, 0.4);
    color: #0a0a0a;
}

.btn-cta-primary.large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(228, 226, 221, 0.25);
    color: var(--light);
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-cta-secondary.large {
    padding: 18px 40px;
    font-size: 16px;
}

.hero-trust-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
}

.trust-item i {
    color: var(--accent);
    font-size: 14px;
}

/* Hero Visual — Server Rack */
.hero-visual {
    position: relative;
    z-index: 10;
}

.server-rack-visual {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(228, 226, 221, 0.12);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.rack-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(228, 226, 221, 0.08);
    background: rgba(26, 26, 26, 0.5);
}

.rack-dots {
    display: flex;
    gap: 6px;
}

.rack-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(228, 226, 221, 0.15);
}

.rack-dots span:nth-child(1) { background: #fd5c65; }
.rack-dots span:nth-child(2) { background: #fed230; }
.rack-dots span:nth-child(3) { background: #20bf6c; }

.rack-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    font-family: 'Courier New', monospace;
    flex: 1;
}

.rack-status {
    font-size: 12px;
    font-weight: 600;
    color: #20bf6c;
}

.rack-status i {
    font-size: 8px;
    margin-right: 4px;
    animation: statusBlink 2s ease infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.rack-body {
    padding: 24px;
}

.rack-metric {
    margin-bottom: 18px;
}

.metric-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.metric-bar {
    height: 8px;
    background: rgba(228, 226, 221, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #c9c7c2);
    border-radius: 10px;
    position: relative;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: metricFillAnim 2s ease forwards;
}

.metric-fill.green { background: linear-gradient(90deg, #20bf6c, #2ecc71); }
.metric-fill.purple { background: linear-gradient(90deg, #a75eea, #8e44ad); }
.metric-fill.orange { background: linear-gradient(90deg, #fb8230, #e67e22); }

@keyframes metricFillAnim {
    from { width: 0; }
}

.metric-fill::after {
    content: attr(data-value);
    position: absolute;
    right: -5px;
    top: -22px;
    font-size: 11px;
    font-weight: 700;
    color: var(--light);
}

.rack-stats-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(228, 226, 221, 0.08);
}

.rack-stat-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: rgba(228, 226, 221, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(228, 226, 221, 0.06);
}

.rack-stat-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.rack-stat-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray);
    margin-top: 4px;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(26, 26, 26, 0.85);
    border: 1px solid rgba(228, 226, 221, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    font-size: 13px;
    font-weight: 600;
    color: var(--light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: badgeFloat 4s ease-in-out infinite;
    z-index: 20;
}

.floating-badge i {
    color: var(--accent);
}

.badge-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* ---- STATS TICKER ---- */
.stats-ticker {
    padding: 50px 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, transparent 100%);
    border-top: 1px solid rgba(228, 226, 221, 0.06);
    border-bottom: 1px solid rgba(228, 226, 221, 0.06);
}

.stats-ticker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(228, 226, 221, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 226, 221, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ticker-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 226, 221, 0.08);
    border-radius: 12px;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.ticker-content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.ticker-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.ticker-plus {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-left: 2px;
}

.ticker-label {
    width: 100%;
    font-size: 13px;
    color: var(--gray);
    margin-top: 2px;
}


/* ---- SOLUTIONS SECTION ---- */
.solutions-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    position: relative;
    padding: 40px 30px 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(228, 226, 221, 0.08);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(228, 226, 221, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card.featured {
    border-color: rgba(228, 226, 221, 0.2);
    background: rgba(26, 26, 26, 0.7);
}

.solution-card.featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--accent), #a8a69f);
}

.solution-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    background: var(--accent);
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-icon-wrap {
    margin-bottom: 24px;
}

.solution-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 226, 221, 0.08);
    border-radius: 16px;
    font-size: 26px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.solution-icon.cloud { color: #38bdf8; background: rgba(56, 189, 248, 0.1); }
.solution-icon.green { color: #4ade80; background: rgba(74, 222, 128, 0.1); }

.solution-card:hover .solution-icon {
    transform: scale(1.1);
}

.solution-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.solution-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.solution-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-features li i {
    color: var(--accent);
    font-size: 12px;
}

.solution-price {
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(228, 226, 221, 0.08);
}

.from-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin: 0 6px;
}

.price-period {
    font-size: 14px;
    color: var(--gray);
}

.solution-btn {
    display: block;
    text-align: center;
    padding: 14px 28px;
    background: var(--gradient-main);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-accent);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
    border-radius: 50%;
}

.solution-btn:hover {
    color: #0a0a0a;
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(228, 226, 221, 0.3);
    transform: translateY(-2px);
}

.solution-btn:hover::before {
    width: 400px;
    height: 400px;
}


/* ---- WHY SECTION ---- */
.why-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, transparent 50%, rgba(26, 26, 26, 0.3) 100%);
}


/* ---- VPS PLANS ---- */
.vps-section {
    padding: 120px 0;
    position: relative;
}

.vps-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.vps-plan-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(228, 226, 221, 0.08);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(228, 226, 221, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.vps-plan-card.popular {
    border-color: var(--accent);
    background: rgba(26, 26, 26, 0.7);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.vps-plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.vps-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--accent);
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vps-plan-header {
    margin-bottom: 24px;
}

.vps-plan-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.vps-plan-tagline {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.vps-plan-price {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(228, 226, 221, 0.08);
}

.vps-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    vertical-align: super;
}

.vps-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
}

.vps-period {
    font-size: 16px;
    color: var(--gray);
}

.vps-plan-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    text-align: left;
}

.vps-plan-specs li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(228, 226, 221, 0.04);
}

.vps-plan-specs li:last-child {
    border-bottom: none;
}

.vps-plan-specs li i {
    width: 20px;
    text-align: center;
    color: var(--accent);
    font-size: 13px;
}

.vps-plan-specs li strong {
    color: var(--white);
}

.vps-plan-btn {
    display: block;
    padding: 14px 28px;
    background: var(--gradient-main);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-plan-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-accent);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
    border-radius: 50%;
}

.vps-plan-btn:hover {
    color: #0a0a0a;
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(228, 226, 221, 0.3);
}

.vps-plan-btn:hover::before {
    width: 400px;
    height: 400px;
}

.vps-custom-cta {
    padding: 20px;
}

.vps-custom-cta p {
    color: var(--gray);
    font-size: 15px;
}

.vps-custom-cta a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.vps-custom-cta a:hover {
    text-decoration: underline;
}


/* ---- INFRASTRUCTURE ---- */
.infra-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, transparent 100%);
}

.infra-locations {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.infra-location {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(228, 226, 221, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.infra-location:hover {
    border-color: rgba(228, 226, 221, 0.2);
    transform: translateX(5px);
}

.location-flag {
    font-size: 32px;
    flex-shrink: 0;
}

.location-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px 0;
}

.location-info p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* Globe Visual */
.infra-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.globe-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.globe-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(228, 226, 221, 0.1);
    border-radius: 50%;
    animation: globeSpin 30s linear infinite;
}

.globe-ring.ring-2 {
    inset: 30px;
    border-style: dashed;
    border-color: rgba(228, 226, 221, 0.06);
    animation-direction: reverse;
    animation-duration: 25s;
}

@keyframes globeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 226, 221, 0.05);
    border: 1px solid rgba(228, 226, 221, 0.1);
    border-radius: 50%;
    font-size: 40px;
    color: var(--accent);
}

.globe-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 5;
}

.globe-point .point-pulse {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pointPulse 2s ease infinite;
}

@keyframes pointPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0; }
}

.globe-point.point-1 { top: 30%; right: 15%; }
.globe-point.point-2 { top: 15%; left: 40%; }
.globe-point.point-3 { bottom: 35%; left: 10%; }

.globe-point::after {
    content: attr(data-label);
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}


/* ---- GAME SERVERS COMPACT ---- */
.games-compact-section {
    padding: 100px 0;
    position: relative;
}

.games-compact-wrapper {
    padding: 50px;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(228, 226, 221, 0.08);
    border-radius: 24px;
}

.games-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.game-compact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(228, 226, 221, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.game-compact-card:hover {
    border-color: rgba(228, 226, 221, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-compact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 226, 221, 0.08);
    border-radius: 12px;
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.game-compact-icon.fivem { color: #fb8230; background: rgba(251, 130, 48, 0.1); }
.game-compact-icon.rust { color: #fd5c65; background: rgba(253, 92, 101, 0.1); }
.game-compact-icon.gmod { color: #a75eea; background: rgba(167, 94, 234, 0.1); }

.game-compact-card:hover .game-compact-icon {
    transform: scale(1.1);
}

.game-compact-info {
    flex: 1;
}

.game-compact-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px 0;
}

.game-compact-info span {
    font-size: 13px;
    color: var(--gray);
}

.game-compact-card > i {
    color: var(--gray);
    font-size: 12px;
    transition: all 0.3s ease;
}

.game-compact-card:hover > i {
    color: var(--accent);
    transform: translateX(4px);
}


/* ---- TECH STACK ---- */
.tech-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, transparent 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.tech-item {
    text-align: center;
    padding: 30px 16px;
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(228, 226, 221, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-6px);
    border-color: rgba(228, 226, 221, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 226, 221, 0.06);
    border-radius: 14px;
    font-size: 24px;
    color: var(--accent);
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon-box {
    background: var(--accent);
    color: #0a0a0a;
}

.tech-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.tech-item p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}


/* ---- DISCORD CTA ---- */
.discord-cta-section {
    padding: 80px 0;
}

.discord-cta-card {
    position: relative;
    padding: 60px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 24px;
    overflow: hidden;
}

.discord-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.discord-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.discord-blob.blob-1 {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(88, 101, 242, 0.15);
}

.discord-blob.blob-2 {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(88, 101, 242, 0.1);
}

.discord-cta-content {
    position: relative;
    z-index: 2;
}

.discord-cta-icon {
    font-size: 40px;
    color: #5865F2;
    margin-bottom: 16px;
}

.discord-cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.discord-cta-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 500px;
}

.discord-cta-stats {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.d-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
}

.d-stat strong {
    color: var(--white);
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #5865F2;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.3);
}

.discord-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(88, 101, 242, 0.5);
    color: #fff;
}

.discord-invite-code {
    margin-top: 12px;
    font-size: 14px;
    color: var(--gray);
    font-family: 'Courier New', monospace;
}


/* ---- FAQ ---- */
.faq-section {
    padding: 120px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(228, 226, 221, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(228, 226, 221, 0.15);
    background: rgba(26, 26, 26, 0.6);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(228, 226, 221, 0.03);
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.faq-question i {
    color: var(--accent);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}


/* ---- FINAL CTA ---- */
.final-cta-section {
    padding: 120px 0;
    position: relative;
}

.final-cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-desc {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
    .solutions-grid,
    .vps-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .stats-ticker-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .games-compact-wrapper {
        padding: 30px;
    }
    .vps-plan-card.popular {
        transform: none;
    }
    .vps-plan-card.popular:hover {
        transform: translateY(-10px);
    }
    .discord-cta-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .solutions-grid,
    .vps-plans-grid {
        grid-template-columns: 1fr;
    }
    .stats-ticker-grid {
        grid-template-columns: 1fr;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .games-compact-grid {
        grid-template-columns: 1fr;
    }
    .index-hero-title {
        font-size: 36px;
    }
    .discord-cta-card {
        padding: 30px;
    }
    .discord-cta-content h3 {
        font-size: 24px;
    }
    .globe-container {
        width: 250px;
        height: 250px;
    }
    .faq-section .section-title {
        margin-bottom: 30px;
    }
    .giveaway-promo-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .giveaway-promo-right {
        align-items: center;
    }
}

/* ═══════════════════════════════════════════
   GIVEAWAY PROMO BANNER
   ═══════════════════════════════════════════ */
.giveaway-promo-banner {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(88, 101, 242, 0.15);
}

.giveaway-promo-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, rgba(124, 58, 237, 0.06) 50%, rgba(10, 10, 10, 0) 100%);
    z-index: 1;
}

.giveaway-promo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.giveaway-promo-orb-1 {
    width: 300px;
    height: 300px;
    background: #5865F2;
    top: -50%;
    left: 10%;
    animation: promoOrbFloat 15s ease-in-out infinite;
}

.giveaway-promo-orb-2 {
    width: 200px;
    height: 200px;
    background: #7c3aed;
    bottom: -30%;
    right: 10%;
    animation: promoOrbFloat 15s ease-in-out infinite reverse;
}

@keyframes promoOrbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -15px); }
}

.giveaway-promo-inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 28px 0;
}

.giveaway-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 10px;
}

.giveaway-promo-pulse {
    width: 6px;
    height: 6px;
    background: #23a55a;
    border-radius: 50%;
    animation: promoPulse 2s ease-in-out infinite;
}

@keyframes promoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.8); }
}

.giveaway-promo-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.giveaway-promo-desc {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.giveaway-promo-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.giveaway-promo-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.giveaway-promo-cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 56px;
}

.giveaway-promo-cd-item span {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.giveaway-promo-cd-item small {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-top: 3px;
}

.giveaway-promo-cd-sep {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.giveaway-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #5865F2;
    color: #fff !important;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
    white-space: nowrap;
}

.giveaway-promo-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
    color: #fff !important;
}

@media (max-width: 767px) {
    .giveaway-promo-title {
        font-size: 18px;
    }
    .giveaway-promo-right {
        flex-direction: column;
    }
    .giveaway-promo-cd-item {
        padding: 8px 10px;
        min-width: 48px;
    }
    .giveaway-promo-cd-item span {
        font-size: 18px;
    }
}
