/* Base Styles */
:root {
    --primary-color: #1E88E5; /* Bright blue */
    --secondary-color: #1565C0; /* Darker blue */
    --accent-color: #8D6E63; /* Brown - used sparingly */
    --light-color: #FFFFFF; /* White */
    --text-color: #0D47A1; /* Dark blue for text */
    --text-muted: #5C6BC0; /* Lighter blue for muted text */
    --background-color: #F5F9FF; /* Very light blue background */
    --border-color: #BBDEFB; /* Light blue border */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background-color: rgba(108, 99, 255, 0.1);
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 21, 31, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 32px;
    margin-right: 12px;
}

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-link {
    color: #b8c2d1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Header Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-link {
    color: #b8c2d1;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #5A9CFF;
    background: rgba(90, 156, 255, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
}

/* Social Login Buttons */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.btn-social i {
    font-size: 1.1rem;
}

.btn-social.discord {
    background-color: #5865F2;
    color: white !important;
    border-color: #5865F2;
}

.btn-social.discord:hover {
    background-color: #4752c4;
    border-color: #4752c4;
}

.btn-social.google {
    background-color: #ffffff;
    color: #444 !important;
    border: 1px solid #e0e0e0;
}

.btn-social.google:hover {
    background-color: #f5f5f5;
    border-color: #d5d5d5;
}

/* Discord link in trust badges */
.trust-item a {
    color: #b8c2d1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item a:hover {
    color: #5865F2;
}

.btn-primary {
    background: #5A9CFF;
    color: white;
    border: 2px solid #3A7BFF;
    border-radius: 4px;
    padding: 8px 15px;
    font-family: 'Minecraft', 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #3A7BFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Add Minecraft font */
@font-face {
    font-family: 'Minecraft';
    src: url('https://fonts.cdnfonts.com/css/minecraft-4') format('woff2');
}

/* Make the header more Minecraft-like */
.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

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

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: #0f0f17;
    color: white;
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(90, 156, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(58, 123, 255, 0.1) 0%, transparent 25%),
        linear-gradient(135deg, #0f0f17 0%, #1a1a2a 100%);
}

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

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

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b8c2d1;
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e6f0;
    font-size: 0.95rem;
}

.feature i {
    color: #5A9CFF;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #b8c2d1;
}

.trust-item i {
    color: #2ecc71;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(90, 156, 255, 0.15);
}

.server-control-panel {
    background: #1a1d2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.panel-header {
    background: #12151f;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.server-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

.server-status.online {
    background: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

.panel-header span {
    font-size: 0.9rem;
    color: #e0e6f0;
    font-weight: 500;
}

.panel-content {
    padding: 0;
}

.panel-content img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #5A9CFF;
    color: white;
    box-shadow: 0 4px 15px rgba(90, 156, 255, 0.3);
}

.btn-primary:hover {
    background: #3A7BFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 156, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .features-grid {
        justify-content: center;
        grid-template-columns: repeat(2, 200px);
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.server-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(90, 156, 255, 0.2);
}

.info-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    border-radius: 6px;
    border-left: 3px solid #5A9CFF;
}

.info-box i {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #5A9CFF;
    width: 25px;
    text-align: center;
}

.info-box .label {
    font-weight: 600;
    margin-right: 10px;
    color: #aaa;
}

.info-box .value {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #fff;
}

.copy-btn {
    background: none;
    border: none;
    color: #5A9CFF;
    cursor: pointer;
    margin-left: 10px;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: rgba(90, 156, 255, 0.1);
}

.status {
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.status.online {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(90, 156, 255, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.1;
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #12151f;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #5A9CFF, #3A7BFF);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(26, 29, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 156, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(26, 29, 42, 0.8);
    border-color: rgba(90, 156, 255, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(90, 156, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #5A9CFF;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: #5A9CFF;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #b8c2d1;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #5A9CFF;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #3A7BFF;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #12151f;
    position: relative;
}

.pricing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.pricing-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-header p {
    color: #b8c2d1;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.billing-toggle span {
    color: #b8c2d1;
    font-size: 1rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1e2130;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: #5A9CFF;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(90, 156, 255, 0.2);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: rgba(90, 156, 255, 0.2);
    color: #5A9CFF;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.pricing-card {
    background: #1a1d2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card.popular {
    border-color: #5A9CFF;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(90, 156, 255, 0.2);
}

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

.pricing-card-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card-header p {
    color: #b8c2d1;
    margin-bottom: 20px;
    font-size: 1rem;
}

.price {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0 5px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

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

.price .amount {
    font-size: 3rem;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: #b8c2d1;
    font-weight: 400;
    margin-top: 10px;
}

.billed-annually {
    color: #5A9CFF;
    font-size: 0.85rem;
    margin-top: 5px;
}

.pricing-card-body {
    padding: 30px;
}

.pricing-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-card-body li {
    color: #b8c2d1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-card-body i {
    color: #5A9CFF;
    margin-right: 10px;
    font-size: 0.8rem;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #5A9CFF;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Pricing Features */
.pricing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature {
    text-align: center;
    padding: 0 20px;
}

.feature i {
    font-size: 2rem;
    color: #5A9CFF;
    margin-bottom: 15px;
}

.feature h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature p {
    color: #b8c2d1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .billing-toggle {
        flex-direction: column;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing .section-subtitle {
        font-size: 1rem;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

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

.pricing-card.featured .popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Login Popup Modal */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.login-modal.active {
    display: block;
}

.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.login-modal-content {
    position: relative;
    background: #12151f;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    margin: 40px auto;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #b8c2d1;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
}

.login-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Login Section */
.login {
    padding: 120px 0 80px;
    background: #0f0f17;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-wrapper {
    display: flex;
    background: #12151f;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.login-content {
    flex: 1;
    padding: 60px;
    max-width: 500px;
}

.login-header {
    margin-bottom: 40px;
    text-align: center;
}

.login-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.login-header p {
    color: #b8c2d1;
    font-size: 1rem;
    margin: 0;
}

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

.login-form label {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-label-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.forgot-password {
    color: #5A9CFF;
    font-size: 0.85rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.forgot-password:hover {
    opacity: 0.8;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: #5A9CFF;
    box-shadow: 0 0 0 3px rgba(90, 156, 255, 0.2);
}

.input-group i {
    color: #5A9CFF;
    margin-right: 10px;
    font-size: 1rem;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    padding: 14px 0;
    outline: none;
    width: 100%;
}

.input-group input::placeholder {
    color: #6a7181;
}

.toggle-password {
    background: none;
    border: none;
    color: #6a7181;
    cursor: pointer;
    padding: 5px;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #5A9CFF;
}

.checkbox-container {
    display: flex;
    align-items: center;
    color: #b8c2d1;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: #5A9CFF;
}

.checkbox-container input:checked ~ .checkmark {
    background: #5A9CFF;
    border-color: #5A9CFF;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin: 25px 0;
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #6a7181;
    font-size: 0.9rem;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 15px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
}

.btn-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.login-footer {
    text-align: center;
    color: #b8c2d1;
    font-size: 0.95rem;
}

.login-footer a {
    color: #5A9CFF;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.login-footer a:hover {
    opacity: 0.8;
}

.login-hero {
    flex: 1;
    background: linear-gradient(135deg, #1a1d2a 0%, #2a2f42 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
    opacity: 0.2;
    z-index: 0;
}

.login-features {
    position: relative;
    z-index: 1;
    max-width: 400px;
    width: 100%;
}

.login-features .feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.login-features .feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-features .feature i {
    font-size: 1.8rem;
    color: #5A9CFF;
    margin-bottom: 15px;
    display: inline-block;
}

.login-features .feature h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 8px;
}

.login-features .feature p {
    color: #b8c2d1;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #0f0f1a;
    padding: 80px 0 20px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header .container {
        padding: 0 25px;
    }
    
    .nav ul {
        gap: 3px;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn-link {
        padding: 8px 16px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .login-wrapper {
        flex-direction: column;
        max-width: 600px;
    }
    
    .login-content {
        max-width: 100%;
        padding: 50px 40px;
    }
    
    .login-hero {
        display: none;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(18, 21, 31, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .header-actions {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 20px;
    }
    
    .login-content {
        padding: 40px 25px;
    }
    
    .login-header h2 {
        font-size: 1.8rem;
    }
    
    .login-header p {
        font-size: 1rem;
    }
    
    .btn-block {
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .header .container {
        padding: 0 15px;
    }
    
    .logo span {
        display: none;
    }
    
    .btn-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .login {
        padding: 90px 0 30px;
    }
    
    .login-content {
        padding: 30px 20px;
    }
    
    .login-header h2 {
        font-size: 1.6rem;
    }
    
    .login-header p {
        font-size: 0.95rem;
    }
    
    .login-divider {
        margin: 20px 0;
    }
    
    .social-login {
        gap: 10px;
    }
    
    .btn-social {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .login-footer {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        padding: 15px;
    }
    
    .nav {
        margin: 20px 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav ul li {
        margin: 10px 0;
    }
    
    .hero {
        padding: 180px 0 100px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .login-box {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
