:root {
    --primary-color: #2dcc70; /* Bright green from logo */
    --primary-dark: #25a25a;
    --primary-light: #4bdf8d;
    --secondary-color: #0f0f0f; /* Almost black */
    --secondary-light: #232323;
    --text-light: #f5f5f5;
    --text-dark: #333333;
    --bg-color: #0f0f0f;
    --card-bg: #181818;
    --card-hover: #232323;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loader animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.logo-loader {
    width: 100px;
    height: 100px;
    animation: pulse 1.5s infinite;
}

.logo-loader img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
}

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

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Navigation */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.discord-btn {
    background-color: #7289DA;
    color: white !important;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background-color: #5e73c1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

.discord-btn i {
    font-size: 16px;
}

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

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: visible;
    min-height: 600px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.hero-content h1 {
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    margin-bottom: 30px;
    width: 100%;
}

.hero-description p {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    white-space: normal;
    word-wrap: break-word;
    word-break: normal;
}

.hero-content p {
    color: #aaa;
    max-width: 100%;
    line-height: 1.8;
    word-break: normal;
    overflow-wrap: break-word;
}

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

.hero-image {
    position: relative;
    min-height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    animation: float 4s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: float 5s ease-in-out infinite;
}

.floating-badge:nth-of-type(1) {
    top: 20%;
    right: 0;
}

.floating-badge.secondary {
    background-color: var(--secondary-light);
    top: 70%;
    left: 0;
    animation-delay: 1s;
}

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

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

/* Pricing Section */
.pricing-section {
    background-color: #191919;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.price-card {
    background: linear-gradient(145deg, #212121, #1a1a1a);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #333;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #2dcc70;
}

.price-card.popular {
    border: 2px solid #2dcc70;
    transform: scale(1.03);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #2dcc70;
    color: #0f0f0f;
    font-weight: 600;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2dcc70;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(45, 204, 112, 0.4);
    transition: all 0.3s ease;
}

.price-card:hover .price {
    text-shadow: 0 0 20px rgba(45, 204, 112, 0.7);
}

.period {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    text-align: left;
}

.features li {
    margin-bottom: 15px;
    color: #ddd;
    display: flex;
    align-items: center;
}

.features li i {
    color: #2dcc70;
    margin-right: 10px;
    font-size: 0.9rem;
}

.price-card .btn {
    width: 100%;
    padding: 12px;
    transition: all 0.3s ease;
}

.price-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 204, 112, 0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

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

.section-header p {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: #aaa;
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #191919;
    position: relative;
}

.faq-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, #212121, #1a1a1a);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: #2dcc70;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    color: #2dcc70;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: #222;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: #191919;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #aaa;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-item {
    background-color: var(--card-bg);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    background-color: var(--card-hover);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    margin-bottom: 10px;
}

.contact-item p {
    margin-bottom: 15px;
    color: #aaa;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    background-color: var(--secondary-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Notification System */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #191919;
    border-left: 4px solid #2dcc70;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 400px;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-content {
    flex: 1;
}

.notification-content p {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
}

.notification-close {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    margin-left: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 24px;
    height: 24px;
}

.notification-close:hover {
    color: #fff;
}

/* Footer */
footer {
    background-color: #0f0f0f;
    padding: 70px 0 20px;
}

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

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.footer-logo p {
    color: #aaa;
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #2dcc70;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #2dcc70;
    padding-left: 5px;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #151515, #0a0a0a);
    border-radius: 50%;
    font-size: 1.2rem;
    color: #2dcc70;
    transition: all 0.3s ease;
    border: 1px solid #2dcc7055;
}

.social-icons a:hover {
    color: #fff;
    background: #2dcc70;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(45, 204, 112, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin-bottom: 0;
    color: #777;
}

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

.footer-legal a {
    color: #aaa;
}

.footer-legal a:hover {
    color: #2dcc70;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 150px 0 100px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
        padding: 0 20px;
    }
    
    .hero-description {
        margin: 0 auto 30px;
        max-width: 100%;
    }
    
    .hero-description p {
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-bottom: 10px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .popular {
        transform: scale(1);
    }
    
    .popular:hover {
        transform: translateY(-10px);
    }
}
