/* ===== CSS Variables ===== */
:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --secondary: #8b5cf6;
    --accent: #f59e0b;
    --bg-dark: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #252542;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: #2d2d44;
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: var(--bg-dark);
    background-image: url('minecraft_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.95);
    border-bottom-color: var(--border);
}

body.light-theme .navbar {
    background: rgba(248, 250, 252, 0.8);
}

body.light-theme .navbar.scrolled {
    background: rgba(248, 250, 252, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 6px;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::after {
    width: 100% !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ===== Theme Toggle ===== */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.theme-toggle:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.theme-toggle .theme-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(15deg);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 100px 20px 60px;
    text-align: center;
    background: var(--bg-dark);
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

.title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== Page Header ===== */
.page-header {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, var(--bg-dark) 100%);
    position: relative;
}

.page-header.hosting-header {
    padding-top: 100px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    position: relative;
}

.page-content {
    padding: 60px 0 100px;
}

/* ===== Home Features ===== */
.home-features {
    padding: 80px 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-box {
    display: block;
    background: var(--bg-card);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-box .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.feature-arrow {
    display: inline-block;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-arrow {
    transform: translateX(5px);
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-list {
    text-align: left;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.service-list li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ===== Plans Section ===== */
.plans {
    padding: 100px 0;
}

.tech-support {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #12122a 100%);
}

.hosting {
    background: linear-gradient(180deg, #12122a 0%, var(--bg-dark) 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.plan-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.plan-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, var(--bg-card) 100%);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.plan-price .currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-bonus {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.plan-bonus span {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-features ul {
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(45, 45, 68, 0.5);
}

.plan-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-featured {
    background: var(--gradient-primary);
    border: none;
}

.btn-featured:hover {
    box-shadow: var(--shadow-glow);
}

/* ===== Hosting Cards ===== */
.hosting-grid,
.hosting-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.hosting-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hosting-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.hosting-card.popular {
    border: 2px solid var(--secondary);
}

.hosting-card.premium {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.1) 0%, var(--bg-card) 100%);
}

.hosting-card.mythic {
    border: 2px solid #ec4899;
    background: linear-gradient(180deg, rgba(236, 72, 153, 0.1) 0%, var(--bg-card) 100%);
}

.hosting-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hosting-card.premium .hosting-badge {
    background: var(--accent);
}

.hosting-card.mythic .hosting-badge {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

.hosting-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 20px;
}

.hosting-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.hosting-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.hosting-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hosting-price {
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.hosting-price .currency {
    font-size: 1rem;
    color: var(--text-secondary);
}

.hosting-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hosting-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hosting-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.spec-icon {
    font-size: 1.2rem;
}

.spec-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.spec-value {
    margin-left: auto;
    font-weight: 600;
    color: var(--text-primary);
}

.spec.bonus {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.spec.bonus .spec-value {
    color: var(--primary);
}

.hosting-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.hosting-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-premium {
    background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
    border: none;
}

.btn-premium:hover {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.btn-mythic {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    border: none;
}

.btn-mythic:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.hosting-card.custom {
    border: 2px solid #06b6d4;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.1) 0%, var(--bg-card) 100%);
}

.hosting-card.custom .hosting-badge {
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
}

.btn-custom {
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    border: none;
}

.btn-custom:hover {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.hosting-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 40px;
    border: 1px solid var(--border);
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.feature-icon {
    font-size: 1.3rem;
}

/* ===== CPU Highlight ===== */
.cpu-highlight {
    margin-bottom: 50px;
}

.cpu-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 25px 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cpu-icon {
    font-size: 2.5rem;
}

.cpu-info {
    display: flex;
    flex-direction: column;
}

.cpu-name {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cpu-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary);
}

.info-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.info-link {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--primary-dark);
}

.info-text {
    color: var(--text-secondary);
    font-weight: 500;
}

.discord-id {
    font-family: 'Consolas', 'Monaco', monospace;
    background: rgba(88, 101, 242, 0.2);
    padding: 5px 12px;
    border-radius: 6px;
    color: #5865F2;
    font-weight: 600;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.submit-btn .btn-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===== Comparison Table ===== */
.comparison-section {
    margin-top: 80px;
}

.comparison-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: rgba(16, 185, 129, 0.1);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--text-secondary);
}

.comparison-table td {
    color: var(--text-muted);
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .price-row td {
    font-weight: 600;
    color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
}

/* ===== Payment Info ===== */
.payment-info {
    margin-top: 60px;
    text-align: center;
}

.payment-info h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.payment-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.payment-item.payment-link {
    text-decoration: none;
    color: var(--text-primary);
}

.payment-item.payment-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.payment-item span {
    font-size: 1.3rem;
}

/* ===== Hosting Info ===== */
.hosting-info {
    margin-top: 80px;
}

.hosting-info h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.info-item .info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== FAQ Section ===== */
.faq-section {
    margin-top: 80px;
}

.faq-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.faq-item h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Why Choose Us ===== */
.why-choose-us-section {
    padding-top: 0;
}

.why-choose-us {
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 24px;
}

.why-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.why-card strong {
    color: var(--primary);
}

/* ===== Reviews Page ===== */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

.reviews-source {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.source-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.source-link:hover {
    color: var(--primary-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.review-meta {
    flex: 1;
}

.review-author {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-rating {
    font-size: 0.9rem;
}

.review-content {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--secondary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.reviews-more {
    text-align: center;
    margin-bottom: 60px;
}

/* Reviews Container Animation */
.reviews-container {
    min-height: 600px;
}

.reviews-grid {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.page-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-btn svg {
    width: 18px;
    height: 18px;
}

.page-numbers {
    display: flex;
    gap: 8px;
}

.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-num:hover {
    border-color: var(--primary);
}

.page-num.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* ===== CTA Section ===== */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border);
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    background: #0a0a14;
    border-top: 1px solid var(--border);
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 26, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hosting-features {
        flex-direction: column;
        align-items: center;
    }

    .page-header {
        padding: 120px 20px 50px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .cpu-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}