```css
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
}

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

/* Navigation */
.navbar {
    background: #000000;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
    background-color: #333;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-video {
    max-width: 800px;
    margin: 0 auto;
}

.hero-video video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    border: 2px solid #333;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin: 0 0.5rem;
}

.btn-primary {
    background-color: #6c5ce7;
    color: white;
    border: 2px solid #6c5ce7;
}

.btn-primary:hover {
    background-color: #5a4fcf;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #6c5ce7;
    border: 2px solid #6c5ce7;
}

.btn-secondary:hover {
    background-color: #6c5ce7;
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

/* Content Sections */
.featured-content,
.quick-links,
.biography,
.tour-dates,
.stream-hero,
.contact-options,
.ai-tools-grid {
    padding: 4rem 0;
}

.featured-content {
    background: #1a1a1a;
}

.featured-content h3,
.biography h3,
.tour-dates h3,
.ai-tools-grid h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

/* Grid Layouts */
.content-grid,
.links-grid,
.events-grid,
.media-grid,
.tools-grid,
.projects-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.events-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

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

/* Content Items */
.content-item,
.quick-link,
.event-card,
.tool-card {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3a3a3a;
}

.content-item:hover,
.event-card:hover,
.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
    border-color: #6c5ce7;
}

.quick-link {
    text-decoration: none;
    color: #e0e0e0;
    text-align: center;
}

.quick-link:hover {
    color: #6c5ce7;
}

.content-item img,
.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-hero {
    padding: 4rem 0;
    background: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #b3b3b3;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #3a3a3a;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-year {
    background: #6c5ce7;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    min-width: 100px;
    text-align: center;
    margin-right: 2rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.timeline-content p {
    color: #b3b3b3;
}

/* Tour Page Styles */
.tours-hero {
    background: linear-gradient(135deg, #2d3561 0%, #c850c0 50%, #ffcc70 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.tour-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #6c5ce7;
    color: #6c5ce7;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #6c5ce7;
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.event-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.event-date {
    text-align: center;
    background: #333;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
    border: 1px solid #444;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: bold;
    color: #6c5ce7;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.event-date .year {
    font-size: 0.9rem;
    color: #b3b3b3;
}

.event-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.venue {
    color: #b3b3b3;
    font-weight: 600;
}

.time {
    color: #888;
    font-size: 0.9rem;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Live Stream Page Styles */
.stream-hero {
    background: #000000;
    color: white;
    padding: 2rem 0;
    border-bottom: 1px solid #333;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.main-stream {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stream-player video {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #333;
}

.stream-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.stream-description {
    color: #b3b3b3;
}

.stream-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #ccc;
}

.stream-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Chat Styles */
.chat-section {
    background: #1a1a1a;
    padding: 2rem 0;
}

.stream-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.secondary-content h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.chat-container {
    background: #2a2a2a;
    border-radius: 10px;
    height: 600px;
    display: flex;
    flex-direction: column;
    border: 1px solid #3a3a3a;
}

.chat-header {
    padding: 1rem;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    border-radius: 10px 10px 0 0;
}

.chat-header h4 {
    color: #fff;
}

.chat-count {
    color: #6c5ce7;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.chat-message {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    background: #333;
}

.username {
    font-weight: bold;
    color: #6c5ce7;
}

.message {
    color: #e0e0e0;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid #444;
    display: flex;
    gap: 0.5rem;
    background: #333;
    border-radius: 0 0 10px 10px;
}

.chat-input input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #555;
    border-radius: 5px;
    background: #2a2a2a;
    color: #e0e0e0;
}

.chat-input input:focus {
    outline: none;
    border-color: #6c5ce7;
}

/* AI Tools Page Styles */
.ai-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.ai-chat-integration {
    padding: 3rem 0;
    background: #1a1a1a;
}

.chat-container-main {
    max-width: 900px;
    margin: 0 auto;
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #3a3a3a;
}

.chat-header-main {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    text-align: center;
}

.chat-interface {
    padding: 2rem;
}

.chat-messages-container {
    height: 400px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #333;
    border-radius: 10px;
    border: 1px solid #444;
}

.ai-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.message-avatar {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #444;
    border-radius: 50%;
}

.message-content {
    flex: 1;
    background: #555;
    padding: 1rem;
    border-radius: 10px;
    color: #e0e0e0;
}

.quick-prompts {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.quick-prompt {
    padding: 0.5rem 1rem;
    background: #444;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: #e0e0e0;
}

.quick-prompt:hover {
    background: #6c5ce7;
    color: white;
}

.chat-input-field {
    background: #333;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #444;
}

.chat-input-field textarea {
    width: 100%;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 1rem;
    resize: vertical;
    min-height: 100px;
    background: #2a2a2a;
    color: #e0e0e0;
}

.chat-input-field textarea:focus {
    outline: none;
    border-color: #6c5ce7;
}

.input-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tool-card {
    text-align: center;
    padding: 2rem;
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-card h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.tool-card p {
    color: #b3b3b3;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.contact-method {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #3a3a3a;
}

.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-method p {
    color: #b3b3b3;
}

.contact-link {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-section {
    background: #1a1a1a;
    padding: 4rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #2a2a2a;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #3a3a3a;
}

.form-container h3 {
    color: #fff;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 1rem;
    background: #333;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.25);
}

/* Support Section */
.support-section {
    background: #1a1a1a;
    padding: 4rem 0;
}

.support-section h3 {
    color: #fff;
}

.support-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 3rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-tier {
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.support-tier:hover {
    border-color: #6c5ce7;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.3);
}

.support-tier.featured {
    border-color: #6c5ce7;
    transform: scale(1.05);
}

.support-tier h4 {
    color: #fff;
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #6c5ce7;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #6c5ce7;
    margin: 1rem 0;
}

.tier-benefits {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.tier-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #444;
    position: relative;
    padding-left: 1.5rem;
    color: #b3b3b3;
}

.tier-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38ef7d;
    font-weight: bold;
}

/* Social Media Grid */
.social-media {
    background: #1a1a1a;
    padding: 4rem 0;
}

.social-media h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.social-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid #3a3a3a;
}

.social-card:hover {
    transform: translateY(-5px);
    color: #6c5ce7;
    border-color: #6c5ce7;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-card h4 {
    color: inherit;
}

.follower-count {
    color: #888;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: #121212;
    padding: 4rem 0;
}

.faq-section h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: #2a2a2a;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border: 1px solid #3a3a3a;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    color: #fff;
}

.faq-question:hover {
    background: #333;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #b3b3b3;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #6c5ce7;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #fff;
}

.footer-section p {
    color: #888;
}

/* Video Library */
.video-library {
    background: #1a1a1a;
    padding: 4rem 0;
}

.video-library h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.video-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #6c5ce7;
    color: #6c5ce7;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #6c5ce7;
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

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

.video-item {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
}

.video-item video {
    width: 100%;
    display: block;
}

.video-info {
    padding: 1rem;
}

.video-info h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.8);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid #333;
    }