/* Base Styles */
:root {
    --primary-color: #6c63ff;
    --secondary-color: #00d9ff;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #2d2d2d;
    --success-color: #4caf50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #5a52d5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-secondarys {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--secondary-color);
}

.btn-secondarys:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.btn-plan {
    background: var(--primary-color);
    color: white;
    width: 100%;
    padding: 12px;
}

.btn-plan:hover {
    background: #5a52d5;
}

.btn-client {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
}

.btn-client:hover {
    background: #5a52d5;
}

/* Header */
header {
    background-color: var(--darker-bg);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(to right, var(--dark-bg), var(--darker-bg));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.1), transparent 70%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--text-primary), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 90%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features {
    background-color: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Hosting Plans Section */
.hosting-plans {
    background-color: var(--darker-bg);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-bottom-left-radius: 10px;
}

.plan-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    margin-right: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 5px;
}

.plan-features {
    padding: 30px;
}

.plan-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features ul li i {
    color: var(--success-color);
    margin-right: 10px;
}

.plan-footer {
    padding: 20px 30px 30px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-bg);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    min-width: 350px;
    flex: 1;
    border: 1px solid var(--border-color);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(45deg, #6c63ff, #6f00ff);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-cta {
    background: white;
    color: var(--primary-color);
}

.cta .btn-cta:hover {
    background: var(--darker-bg);
    color: white;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
}

.contact-detail div h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-detail div p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../img/pattern.png');
    opacity: 0.1;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* VPS Hosting Section */
.vps-hosting {
    background-color: var(--dark-bg);
    position: relative;
}

.vps-hosting::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at bottom left, rgba(0, 217, 255, 0.05), transparent 70%);
}

/* FAQ Section */
.faq {
    background-color: var(--darker-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(108, 99, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-secondary);
}

/* Features Page Styles */
.feature-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-block {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-block p {
    color: var(--text-secondary);
}

/* Feature Showcase */
.feature-showcase {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.feature-showcase::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.1), transparent 70%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.showcase-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.showcase-list {
    margin-bottom: 30px;
}

.showcase-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.showcase-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.showcase-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About Page Styles */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.team-section {
    background-color: var(--darker-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--dark-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.team-social a i {
    color: var(--text-primary);
    font-size: 1rem;
}

/* Testimonials on About Page */
.about-testimonials {
    background-color: var(--dark-bg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .showcase-content h2,
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .showcase-grid,
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .showcase-image,
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--darker-bg);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .btn-cta {
        padding: 12px 30px;
    }
    
    .testimonial {
        min-width: 280px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 1s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

.dark-mode-toggle i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a52d5;
}

/* Dark Theme Styles for Game Hosting Page */
body {
    background-color: #0f1523;
    color: #ffffff;
}

header {
    background-color: #0a0e1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/game-server-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero-banner h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4e9eff;
}

.hero-banner p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #cccccc;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.feature-badges span {
    background-color: rgba(78, 158, 255, 0.2);
    color: #4e9eff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.feature-badges span i {
    margin-right: 8px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background-color: #1a2235;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.btn-primary {
    background-color: #4e9eff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3a7fd9;
}

.server-features {
    background-color: #1a2235;
    padding: 80px 0;
    margin-top: 80px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background-color: #242e42;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 2.5rem;
    color: #4e9eff;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-box p {
    color: #cccccc;
    font-size: 0.95rem;
}

.game-comparison {
    padding: 80px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background-color: #1a2235;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background-color: #242e42;
    color: #ffffff;
    padding: 15px;
    text-align: left;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight {
    background-color: rgba(78, 158, 255, 0.1);
}

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    margin-top: 80px;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-cta {
    background-color: #4e9eff;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #3a7fd9;
}

footer {
    background-color: #0a0e1a;
    padding: 80px 0 30px;
    margin-top: 0;
}

/* Server Introduction Styles */
.server-intro {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.server-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.server-intro-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.server-benefits {
    margin-top: 30px;
}

.server-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.server-benefits li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.server-intro-image {
    text-align: center;
}

.server-intro-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.server-intro-image img:hover {
    transform: translateY(-10px);
}

/* Server Plans Styles */
.server-plans {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.custom-server {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.6), rgba(20, 20, 30, 0.8));
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-server h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-server p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Data Centers Styles */
.data-centers {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.data-centers-map {
    position: relative;
    margin: 50px 0;
    text-align: center;
}

.data-centers-map img {
    max-width: 100%;
    border-radius: 10px;
}

.location-marker {
    position: absolute;
    cursor: pointer;
}

.location-marker.europe {
    top: 20%;
    left: 47%;
}

.location-marker.na {
    top: 35%;
    left: 25%;
}

.location-marker.asia {
    top: 45%;
    left: 75%;
}

.location-dot {
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
    }
}

.location-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.9), rgba(20, 20, 30, 0.95));
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.location-marker:hover .location-info {
    opacity: 1;
    visibility: visible;
    bottom: 35px;
}

.location-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.location-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.data-centers-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.dc-feature {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.6), rgba(20, 20, 30, 0.8));
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.dc-feature i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.dc-feature h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.dc-feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Server Management Styles */
.server-management {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.management-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.management-option {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.6), rgba(20, 20, 30, 0.8));
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.management-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.management-option.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.management-option.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.option-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.option-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.option-price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.option-features {
    padding: 30px;
}

.option-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.option-features ul li i {
    margin-right: 10px;
    font-size: 1rem;
}

.option-features ul li i.fa-check {
    color: var(--primary-color);
}

.option-features ul li i.fa-times {
    color: #ff5555;
}

.option-footer {
    padding: 20px 30px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.option-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive adjustments for server pages */
@media (max-width: 992px) {
    .server-intro-content,
    .management-options {
        grid-template-columns: 1fr;
    }
    
    .data-centers-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .management-option.featured {
        transform: scale(1);
    }
    
    .management-option.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .data-centers-features {
        grid-template-columns: 1fr;
    }
    
    .location-marker.europe {
        top: 25%;
        left: 45%;
    }
    
    .location-marker.na {
        top: 30%;
        left: 20%;
    }
    
    .location-marker.asia {
        top: 40%;
        left: 70%;
    }
}

/* Game Server Specific Styles */
.game-servers {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.game-card {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.6), rgba(20, 20, 30, 0.8));
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.game-card.featured {
    border: 2px solid var(--primary-color);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.best-badge {
    position: absolute;
    top: 8px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.game-image {
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-content {
    padding: 25px;
}

.game-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.game-features {
    margin-bottom: 20px;
}

.game-features ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.game-features ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.game-pricing {
    margin-bottom: 20px;
}

.game-actions {
    display: flex;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* All Games Section */
.all-games {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.games-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.game-item {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.6), rgba(20, 20, 30, 0.8));
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.game-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    flex: 1;
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.game-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.game-pricing {
    margin: 0 15px;
    white-space: nowrap;
    color: var(--primary-color);
    font-weight: 600;
}

.game-action {
    margin-left: auto;
}

/* Server Comparison Table */
.server-comparison {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    text-align: left;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--card-bg);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    font-weight: 600;
}

.comparison-table .check {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-align: center;
}

.comparison-table .times {
    color: #ff5555;
    font-size: 1.2rem;
    text-align: center;
}

/* Dedicated Server Plans */
.dedicated-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.dedicated-plan {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.6), rgba(20, 20, 30, 0.8));
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dedicated-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.plan-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.plan-billing {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.plan-specs {
    padding: 30px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.spec-name {
    color: var(--text-secondary);
}

.spec-value {
    font-weight: 600;
}

.plan-footer {
    padding: 20px 30px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Server Specifications */
.server-specs {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.spec-card {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.6), rgba(20, 20, 30, 0.8));
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.spec-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.spec-card h3 i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.spec-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.spec-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.spec-list li span:first-child {
    color: var(--text-secondary);
}

.spec-list li span:last-child {
    font-weight: 600;
}

/* Server Setup Process */
.setup-process {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Responsive adjustments for dedicated server pages */
@media (max-width: 1200px) {
    .games-grid,
    .dedicated-plans {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .process-step:nth-child(odd)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .games-grid,
    .dedicated-plans,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .games-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
}

/* Control Panel Section */
.control-panel {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.panel-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.panel-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.panel-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.panel-features {
    padding: 20px;
}

.panel-features ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.panel-features ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--text-primary);
}

.panel-features ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* Responsive styles for Control Panel */
@media (max-width: 992px) {
    .panel-showcase {
        grid-template-columns: 1fr;
    }
    
    .panel-features ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .control-panel {
        padding: 60px 0;
    }
    
    .panel-features ul li {
        font-size: 14px;
    }
}


.btn-primaryss {
    background: var(--primary-color);
    color: white;
    display: inline-block;
    text-align: center;
    position: relative;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primaryss:hover {
    background: #5a52d5;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-secondarysss {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--secondary-color);
    display: inline-block;
    text-align: center;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-secondarysss:hover {
    background: var(--secondary-color);
    color: white;
}

.promo-banner {
    background: linear-gradient(90deg, #8B0000, #B22222);
    color: #fff;
    padding: 15px 0;
    margin-top: 80px; /* Adjust based on your header height */
}

.promo-banner .container {
    padding: 0 15px;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.promo-info {
    display: flex;
    flex-direction: column;
}

.promo-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.promo-deals {
    font-size: 1.1rem;
}

.promo-deals strong {
    font-weight: 700;
    color: #6c63ff;
}

.divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.countdown-container {
    display: flex;
    align-items: center;
}

.countdown-label {
    font-size: 0.9rem;
    margin-right: 10px;
}

.countdown {
    display: flex;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 5px 10px;
    min-width: 50px;
}

.countdown-value {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.promo-action .btn-promo {
    background-color: #6c63ff;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.promo-action .btn-promo:hover {
    background-color: #6c63ff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .promo-content {
        justify-content: center;
        gap: 15px;
    }
    
    .promo-info, .countdown-container, .promo-action {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .promo-deals {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .divider {
        display: none;
    }
    
    .countdown-item {
        min-width: 40px;
        padding: 3px 5px;
    }
    
    .countdown-value {
        font-size: 1rem;
    }
    
    .countdown-unit {
        font-size: 0.6rem;
    }
}

/* Game Server Plans Styling */
/* Game Server Plans Styling */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.plan-card {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.6), rgba(20, 20, 30, 0.8));
    border-radius: 10px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, transparent 0%, transparent 50%, var(--primary-color) 50%, var(--secondary-color) 100%);
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1;
    z-index: 1;
}

.discount-badge span {
    color: white;
    font-weight: bold;
    font-size: 16px;
    transform: rotate(-45deg) translate(-15px, 35px);
    display: block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    background-color: transparent;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
}

.plan-header {
    margin-bottom: 20px;
    text-align: center;
    padding-top: 10px;
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-info {
    margin-bottom: 20px;
    text-align: center;
    min-height: 60px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-standard {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.discounted-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.regular-price {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.plan-specs {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-specs ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.plan-specs ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.plan-specs ul li:last-child {
    border-bottom: none;
}

.plan-specs ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.plan-footer {
    margin-top: auto;
}

.btn-order {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-order:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-server {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .discount-badge {
        width: 70px;
        height: 70px;
    }
    
    .discount-badge span {
        font-size: 12px;
        transform: rotate(45deg) translate(10px, 10px);
    }
    
    .plan-header h3 {
        font-size: 22px;
    }
    
    .discounted-price, .price-standard {
        font-size: 18px;
    }
    
    .regular-price {
        font-size: 13px;
    }
}