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

body {
    font-family: "Lucida Console", "Courier New", monospace;
    background: linear-gradient(135deg, #070F2B, #1B1A55); /* Dark background */
    color: #9290C3; /* Light text color */
}

html {
    scroll-behavior: smooth;
}

/* Section Border */
.section-border {
    border-top: 1px solid rgba(241, 241, 241, 0.15); /* light color, adjust opacity as needed */
    padding-top: 2em; /* Add some space for better separation */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background: rgba(7, 15, 43, 0.9); /* Darkened #070F2B for navbar */
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0px 4px 10px rgba(7, 15, 43, 0.7);
}

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

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

.logo-title-container > img {
    width: 250px;
} 
.logo {
    width: 50px;
    height: auto;
    margin-right: 0.5em;
    opacity: 0.8; /* Slight transparency */
}

.site-title {
    font-size: 1.8rem;
    color: #9290C3; /* Light text color */
    text-shadow: 0 0 8px rgba(146, 144, 195, 0.8), 0 0 15px rgba(146, 144, 195, 0.6);
    font-weight: bold;
}

.navbar nav {
    display: flex;
    gap: 2em;
}

.navbar nav a {
    color: #ffffff; /* Secondary color */
    text-decoration: none;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: #1B1A55; /* Primary color */
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 10em 2em;

    font-weight: bold;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 3rem;
    color: #9290C3; /* Light text color */
    margin-bottom: 1em;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2em;
    color: #535C91; /* Secondary color */
}

.cta-container {
    display: inline-flex;
    gap: 1em;
}

.cta-btn {
    padding: 10px 20px;
    background-color: #1B1A55; /* Primary color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    background-color: #535C91; /* Secondary color */
    box-shadow: 0 0 10px rgba(27, 26, 85, 0.8), 0 0 20px rgba(27, 26, 85, 0.6), 0 0 30px rgba(27, 26, 85, 0.4);
}

.discord-btn {
    background-color: #535C91;
    padding: 10px 20px;
    text-decoration: none;
    color: #070F2B;
}

.discord-btn:hover {
    background-color: #1B1A55;
    box-shadow: 0 0 10px rgba(83, 92, 145, 0.8), 0 0 20px rgba(83, 92, 145, 0.6), 0 0 30px rgba(83, 92, 145, 0.4);
}

.performance {
    background-color: #070F2B;
    padding: 1em;
    border-radius: 10px;
    margin-left: 2em;
    flex: 0 0 250px;
    text-align: center;
    color: #9290C3;
}

.performance-content h3 {
    color: #1B1A55;
    font-size: 1.5rem;
}

/* Features Section */
.features-section {
    padding: 4em 2em;
    text-align: center;
    background: #2D3748 ;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1em;
    color: #E2E8F0;
}

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

.feature-card {
    background: #4A5568;
    padding: 2em;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #E2E8F0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(7, 15, 43, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    color: #9290C3;
    margin-bottom: 0.5em;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
}

/* Hosting Plans */
.plans-section {
    padding: 4em 2em;
    text-align: center;
    background: #2D3748; /* Background color */
}

.plans-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1em;
    color: #E2E8F0; /* Light text color */
}

.plans {
    display: flex;
    justify-content: center;
    gap: 1.5em;
}

.plan-card {
    background: #4A5568; /* Secondary color */
    padding: 2em;
    border-radius: 10px;
    transition: transform 0.3s;
    width: 250px;
    text-align: center;
    color: #E2E8F0;
}

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

.plan-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5em;
    color: #9290C3; /* Accent color */
}

.plan-card .price {
    font-size: 1.5rem;
    color: #007BFF; /* Primary color */
    margin: 1em 0;
}

.plan-actions {
    margin-top: 1.5em;
}

/* Statistics Section */
.statistics-section {
    padding: 4em 2em;
    text-align: center;
    background: #2D3748; /* Background color */
}

.statistics-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1em;
    color: #E2E8F0; /* Light text color */
}

.statistics {
    display: flex;
    justify-content: center;
    gap: 2em;
}

.stat-card {
    background: #4A5568; /* Secondary color */
    padding: 2em;
    border-radius: 10px;
    width: 150px;
    transition: transform 0.3s;
    color: #2D3748; /* Background color */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h3 {
    font-size: 2rem;
    color: #9290C3; /* Accent color */
}

.stat-card p {
    font-size: 1.2rem;
    color: #E2E8F0;
}

/* Advertisement Section */
.sponsor-ad {
    padding: 3em 2em;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin: 2em 0;
}

.ad-container {
    display: flex;
    align-items: center;
    gap: 1.5em;
    text-align: left;
}

.ad-logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.ad-content {
    flex: 1;
}

.ad-content h2 {
    font-size: 2rem;
    color: #3155a9;
    margin-bottom: 0.5em;
}

.ad-content p {
    font-size: 1.1rem;
    color: #f1f1f1;
    margin-bottom: 1.5em;
}

.ad-btn {
    padding: 10px 20px;
    background-color: #3155a9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, box-shadow 0.3s;
}

.ad-btn:hover {
    background-color: #173c66;
    box-shadow: 
        0 0 10px rgba(49, 85, 169, 0.8), 
        0 0 20px rgba(49, 85, 169, 0.6), 
        0 0 30px rgba(49, 85, 169, 0.4);
}

/* Knowledge Base & FAQs Section */
.faq-section {
    padding: 4em 2em;
    text-align: center;
    background: #1B1A55;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1em;
    color: #9290C3;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
}

.faq {
    background: #4A5568; /* Secondary color */
    padding: 1.5em 2em;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    text-align: left;
    transition: transform 0.3s;
    color: #2D3748; /* Background color */
}

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

.faq h3 {
    font-size: 1.5rem;
    color: #9290C3;
    margin-bottom: 0.5em;
}

.faq p {
    font-size: 1.1rem;
    color: #ddd;
}

/* Footer */
footer {
    background-color: #1e2229;
    color: #e3e3e3;
    padding: 2em 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.footer-sections {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 1.5em;
    flex-wrap: wrap;
}

.footer-column {
    width: 180px;
}

.footer-column h3 {
    font-size: 1em;
    color: #9290C3;
    margin-bottom: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    font-size: 0.9em;
}

.footer-column ul li {
    margin-bottom: 0.5em;
}

/* Footer Link Styling */
.footer-column ul li a {
    color: #e3e3e3;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9em;
}

.footer-column ul li a:hover {
    color: #4da1a8;
    text-decoration: underline;
}

.footer-column ul li i {
    margin-left: 0.3em;
    font-size: 1em;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin: 1em 0;
}

.footer-social a {
    color: #7876eb;
    font-size: 1.2em;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #5e5db3;
}

/* Contact Buttons */
.footer-contact {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-bottom: 1em;
}

.footer-contact a {
    background-color: #2D3748;
    color: #e3e3e3;
    padding: 0.5em 1em;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.footer-contact a:hover {
    background-color: #4A5568;
}

/* Footer Bottom Text */
.footer-bottom {
    font-size: 0.8em;
    color: #a8a8a8;
    margin-top: 1em;
}

.nqmadakopirash {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
