* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    box-shadow: 0 4px 20px rgba(0, 255, 191, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00ffbf;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ffbf;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #00ffbf;
    color: #0a0a1a;
}

.btn-secondary {
    background-color: transparent;
    color: #00ffbf;
    border: 1px solid #00ffbf;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 191, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMtMS4yIDAtMi4yLjctMi44IDEuN2wtNS45IDkuOS01LjktOS45Yy0uNi0xLTEuNi0xLjctMi44LTEuN0M5LjggMTYgOSAxNy4xIDkgMTguNGw1LjkgOS45LTUuOSA5LjljLS42IDEtLjEgMi4xLjUgMi44czEuNi41IDIuOCAuNWw2LTkuOSA2IDkuOWMxLjIgMCAyLjItLjcgMi44LTEuN2w1LjktOS45IDUuOSA5LjljLjYuMS4xIDIuMS0uNSAyLjhzLTEuNi41LTIuOC41bC02LTkuOSA2LTkuOWMxLjItMSAyLjItMS43IDIuOC0xLjd6IiBzdHJva2U9IiMwMGZmYmYiIHN0cm9rZS13aWR0aD0iMSIgb3BhY2l0eT0iLjEiLz48L2c+PC9zdmc+') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b0b0b0;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 255, 191, 0.2);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #1a1a2e;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.section-title p {
    font-size: 16px;
    color: #b0b0b0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 191, 0.2);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00ffbf;
}

.feature-card p {
    color: #b0b0b0;
}

/* Membership Section */
.membership {
    padding: 100px 0;
    background-color: #0a0a1a;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.membership-card {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00ffbf, #00a884);
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 191, 0.2);
}

.membership-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.membership-card .price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00ffbf;
}

.membership-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.membership-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #b0b0b0;
}

.membership-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffbf;
}

/* News Section */
.news {
    padding: 100px 0;
    background-color: #1a1a2e;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 191, 0.2);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 14px;
    color: #00ffbf;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.news-card p {
    color: #b0b0b0;
    margin-bottom: 15px;
}

.news-card a {
    color: #00ffbf;
    text-decoration: none;
    font-weight: bold;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background-color: #1a1a2e;
    border-bottom: 1px solid rgba(0, 255, 191, 0.1);
}

.breadcrumb ul {
    display: flex;
    list-style: none;
}

.breadcrumb li {
    margin-right: 10px;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #00ffbf;
}

.breadcrumb a {
    color: #b0b0b0;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #00ffbf;
}

.breadcrumb li:last-child {
    color: #00ffbf;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 255, 191, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00ffbf;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00ffbf;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 191, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .features, .membership, .news {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}