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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    margin-top: 0.5rem;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand .logo {
    height: 20px !important;
    max-height: 20px !important;
    width: auto !important;
    max-width: 60px !important;
    object-fit: contain !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    box-sizing: border-box !important;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

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

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

.cta-button {
    background: linear-gradient(45deg, #FF1B7D, #E91E63);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 27, 125, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 27, 125, 0.6);
}

/* Course Section */
.course-section {
    padding: 4rem 0;
    background: white;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 12px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d3748;
}

.course-navigation {
    margin-bottom: 3rem;
}

.course-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-button {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4a5568;
}

.tab-button:hover {
    border-color: #00AFF0;
    background: #edf2f7;
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    border-color: #00AFF0;
    box-shadow: 0 4px 15px rgba(0, 175, 240, 0.3);
}

.course-content {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 2px solid rgba(0, 175, 240, 0.1);
}

.content-section {
    display: none;
    padding: 3rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    min-height: 600px;
    position: relative;
    color: white;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AFF0, #0084FF, #FF1B7D);
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

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

.content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    border-bottom: 3px solid #00AFF0;
    padding-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 175, 240, 0.2) 0%, rgba(0, 132, 255, 0.15) 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.content-body {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-body p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    line-height: 1.7;
}

.content-body ul {
    margin-bottom: 2rem;
}

.content-body li {
    padding: 0.5rem 0;
    color: #2d3748;
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    border-radius: 6px;
    padding: 0.8rem;
    border-left: 3px solid #00AFF0;
    border: 1px solid rgba(0, 175, 240, 0.1);
}

/* Special styling for specific sections that should have tick marks */
.goal-section ul,
.why-telegram-section ul,
.quality-tips ul,
.banking-rules ul,
.currency-optimization ul,
.legal-section ul,
.bio-section ul:not(.example-post ul) {
    list-style: none;
}

.goal-section li,
.why-telegram-section li,
.quality-tips li,
.banking-rules li,
.currency-optimization li,
.legal-section li,
.bio-section li {
    padding-left: 2rem;
    position: relative;
}

.goal-section li:before,
.why-telegram-section li:before,
.quality-tips li:before,
.banking-rules li:before,
.currency-optimization li:before,
.legal-section li:before,
.bio-section li:before {
    content: "✓";
    position: absolute;
    left: 0.5rem;
    color: #00AFF0;
    font-weight: bold;
    font-size: 1.2rem;
}

.content-image-placeholder {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.content-image-placeholder i {
    font-size: 3rem;
    color: #a0aec0;
    margin-bottom: 1rem;
}

.content-image-placeholder p {
    color: #718096;
    font-style: italic;
}

/* Chat Section */
.chat-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 12px;
}

.chat-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.chat-header {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.chat-header i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.chat-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8fafc;
}

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

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-content {
    max-width: 70%;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bot-message .message-content {
    background: white;
    border-bottom-left-radius: 5px;
}

.user-message .message-content {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    border-bottom-right-radius: 5px;
}

.chat-input-container {
    display: flex;
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.chat-input-container input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input-container input:focus {
    border-color: #00AFF0;
}

.chat-input-container input:disabled {
    background: #f7fafc;
    color: #a0aec0;
}

.chat-input-container button {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    margin-left: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input-container button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 175, 240, 0.4);
}

.chat-input-container button:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.chat-footer {
    padding: 1rem 1.5rem;
    text-align: center;
    background: #f7fafc;
    color: #718096;
    border-top: 1px solid #e2e8f0;
}

.chat-footer i {
    color: #48bb78;
    margin-right: 0.5rem;
}

/* Communities Section */
.communities-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 12px;
}

.communities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 175, 240, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 27, 125, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.communities-section .container {
    position: relative;
    z-index: 1;
}

.community-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.community-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.community-item-image {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.community-item-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.community-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AFF0, #0084FF, #FF1B7D);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.community-item:hover::before {
    transform: scaleX(1);
}

.community-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #00AFF0;
}

.community-item.paid {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fffaf0 0%, #fef5e7 100%);
}

.community-item.paid::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffc107);
}

.top-communities {
    margin-bottom: 5rem;
    position: relative;
}

.top-communities::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.top-communities h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a202c;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.top-communities h3::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.top-communities h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #00AFF0, #0084FF, #FF1B7D);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 175, 240, 0.3);
}

.free-communities h3, .paid-communities h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d3748;
    position: relative;
    padding-left: 1rem;
}

.free-communities h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 2px;
}

.paid-communities {
        margin-top: 5rem;
        margin-bottom: 5rem;
        position: relative;
    }

.paid-communities h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.community-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffc107);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.community-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, rgba(255, 215, 0, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.community-card:hover::before {
    transform: scaleX(1);
}

.community-card:hover::after {
    opacity: 1;
}

.community-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.community-card.premium {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fffdf7 0%, #fef9e7 50%, #fdf5d9 100%);
    position: relative;
}

.community-card.premium::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffc107);
    height: 8px;
}

.community-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffc107);
    color: #744210;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 2px 8px rgba(255, 215, 0, 0.2);
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.community-badge::before {
    content: '✨';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.2); opacity: 0.8; }
}

.community-card:hover .community-badge {
    transform: scale(1.1);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        0 4px 12px rgba(255, 215, 0, 0.3);
}

.community-card h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2d3748;
    line-height: 1.3;
}

.community-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.community-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.community-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.community-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.community-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.member-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #48bb78;
    font-weight: 600;
    background: rgba(72, 187, 120, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.member-count i {
    color: #48bb78;
}

.price {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.join-button {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 6px 20px rgba(0, 175, 240, 0.3),
        0 2px 8px rgba(0, 175, 240, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.95rem;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.join-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.join-button:hover::before {
    left: 100%;
}

.join-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(0, 175, 240, 0.4),
        0 4px 15px rgba(0, 175, 240, 0.3);
}

.join-button:active {
    transform: translateY(-2px) scale(1.02);
}

.join-button.free {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.join-button.free:hover {
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
}

/* OFM Community CTA Section */
.ofm-community-cta {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    border-radius```text
: 12px;
    padding: 2rem;
    margin-top: 2rem;
    color: white;
}

.ofm-community-cta .cta-content h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ofm-community-cta .cta-content p {
    color: rgba(255, 255,255, 0.9);
    lineheight: 1.6;
    margin-bottom: 1.5rem;
}

.telegram-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.telegram-cta i {
    font-size: 1.5rem;
    color: white;
}

.telegram-cta span {
    color: white;
    font-weight: 500;
}

.telegram-cta a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.telegram-cta a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.admin-username {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 0.3rem;
}

.admin-username:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Methods Table Styling */
.methods-table {
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
    border: 1px solid #e2e8f0;
}

.method-header {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    font-weight: 600;
}

.method-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s ease;
}

.method-row:hover {
    background: #edf2f7;
}

.method-row:last-child {
    border-bottom: none;
}

.method {
    font-weight: 600;
    color: #2d3748;
}

.speed {
    color: #48bb78;
    font-weight: 500;
}

.benefit {
    color: #4a5568;
}

/* Crypto Steps Styling */
.crypto-steps {
    margin: 1.5rem 0;
}

.crypto-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #00AFF0;
}

.step-number {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.crypto-step p {
    margin: 0;
    color: #2d3748;
    font-weight: 500;
}

.crypto-step ul {
    margin: 0.5rem 0 0 0;
    list-style: none;
}

.crypto-step li {
    padding: 0.2rem 0;
    color: #4a5568;
}

.crypto-step li:before {
    content: "→";
    color: #00AFF0;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Professional Course Content Styling */

/* Goal Section */
.goal-section {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 175, 240, 0.3);
}

/* Apply WHITE text only to dark background sections */
.goal-section *,
.expert-advice-section *,
.ofm-community-cta * {
    color: white !important;
}

.goal-section h4,
.expert-advice-section h4,
.ofm-community-cta h4 {
    color: white !important;
}

.goal-section p,
.expert-advice-section p,
.ofm-community-cta p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.goal-section ul li,
.expert-advice-section ul li,
.ofm-community-cta ul li {
    color: white !important;
}

.goal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.goal-section h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.goal-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Professional Tables */
.content-types-table, .schedule-table, .avoid-table, .methods-table, .formats-table, 
.pricing-table, .cycle-table, .fatigue-table, .setup-table, .tagging-table, 
.rules-table, .profile-table, .mistakes-table {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 175, 240, 0.1);
}

/* Fix text colors for light background tables */
.content-types-table *, .schedule-table *, .avoid-table *, .methods-table *, .formats-table *, 
.pricing-table *, .cycle-table *, .fatigue-table *, .setup-table *, .tagging-table *, 
.rules-table *, .profile-table *, .mistakes-table * {
    color: #2d3748 !important;
}

.content-type-row, .schedule-row, .avoid-row, .method-row, .format-row, 
.pricing-row, .cycle-row, .fatigue-row, .setup-row, .tag-row, .rule-row, 
.profile-row, .mistake-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.avoid-row, .rule-row, .mistake-row {
    grid-template-columns: 1fr 1fr;
}

.schedule-row, .setup-row, .tag-row, .profile-row {
    grid-template-columns: 1fr 2fr;
}

.content-type-row:hover, .schedule-row:hover, .avoid-row:hover, .method-row:hover, 
.format-row:hover, .pricing-row:hover, .cycle-row:hover, .fatigue-row:hover, 
.setup-row:hover, .tag-row:hover, .rule-row:hover, .profile-row:hover, .mistake-row:hover {
    background: linear-gradient(135deg, rgba(0, 175, 240, 0.05) 0%, rgba(0, 132, 255, 0.05) 100%);
    transform: translateX(5px);
}

.content-type-row.header, .schedule-row.header, .avoid-row.header, .method-header, 
.format-row.header, .pricing-row.header, .cycle-row.header, .fatigue-row.header, 
.setup-row.header, .tag-row.header, .rule-row.header, .profile-row.header, .mistake-row.header {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    font-weight: 700;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.content-type-row:last-child, .schedule-row:last-child, .avoid-row:last-child, 
.method-row:last-child, .format-row:last-child, .pricing-row:last-child, 
.cycle-row:last-child, .fatigue-row:last-child, .setup-row:last-child, 
.tag-row:last-child, .rule-row:last-child, .profile-row:last-child, .mistake-row:last-child {
    border-bottom: none;
}

/* Enhanced Section Styling */
.example-post {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(0, 175, 240, 0.2);
    border-left: 6px solid #00AFF0;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 175, 240, 0.1);
    position: relative;
    overflow: hidden;
}

/* Fix text colors for light background sections */
.example-post *, .quality-tips *, .bio-section *, .why-telegram-section *, 
.ppv-importance-section *, .telegram-promo-section *, .cold-outreach-section *, 
.subscriber-database-section *, .ai-chatbot-section *, .telegram-rules-section *,
.step *, .funnel-step *, .crypto-step * {
    color: #2d3748 !important;
}

.example-post h5, .quality-tips h4, .bio-section h4, .bio-section h5,
.why-telegram-section h4, .ppv-importance-section h4, .telegram-promo-section h4, 
.cold-outreach-section h4, .subscriber-database-section h4, .ai-chatbot-section h4, 
.telegram-rules-section h4, .step h5, .funnel-step h5 {
    color: #00AFF0 !important;
}

.example-post::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 175, 240, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.example-post h5 {
    color: #00AFF0;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.example-post h5::before {
    content: '✨';
    font-size: 1.3rem;
}

.example-post blockquote {
    background: linear-gradient(135deg, rgba(0, 175, 240, 0.05) 0%, rgba(0, 132, 255, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    font-style: italic;
    border-left: 4px solid #00AFF0;
    box-shadow: 0 4px 16px rgba(0, 175, 240, 0.1);
}

.example-post ul {
    margin-top: 1rem;
}

.example-post ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.example-post ul li:last-child {
    border-bottom: none;
}

/* Professional Notes and Tips */
.expert-note {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-left: 6px solid #FFC107;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.15);
    position: relative;
    overflow: hidden;
}

.expert-note::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

.expert-note p {
    margin: 0;
    color: #744210;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
}

.pro-tip {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-left: 6px solid #4CAF50;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.15);
    position: relative;
    overflow: hidden;
}

.pro-tip::before {
    content: '🚀';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

.pro-tip p {
    margin: 0;
    color: #2e7d32;
    font-weight: 600;
    line-height: 1.6;
}

.feed-vs-ppv {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-left: 6px solid #9c27b0;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(156, 39, 176, 0.15);
    position: relative;
    overflow: hidden;
}

.feed-vs-ppv::before {
    content: '⚖️';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

.feed-vs-ppv h4 {
    color: #6a1b9a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feed-vs-ppv p {
    color: #4a148c;
    line-height: 1.6;
}

.quality-tips {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 175, 240, 0.1);
}

.quality-tips h4 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quality-tips h4::before {
    content: '🎯';
    font-size: 1.3rem;
}

.quality-tips ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.quality-tips ul li {
    background: linear-gradient(135deg, rgba(0, 175, 240, 0.05) 0%, rgba(0, 132, 255, 0.05) 100%);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #00AFF0;
    transition: all 0.3s ease;
}

.quality-tips ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 175, 240, 0.15);
}

.insider-insight {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-left: 6px solid #e91e63;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.15);
    position: relative;
    overflow: hidden;
}

.insider-insight::before {
    content: '💎';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

.insider-insight h4 {
    color: #ad1457;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insider-insight p {
    color: #880e4f;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Steps and Process Styling */
.step, .funnel-step, .crypto-step {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 175, 240, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step::before, .funnel-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
}

.step:hover, .funnel-step:hover, .crypto-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 175, 240, 0.2);
}

.step h5, .funnel-step h5 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step ul, .step p, .funnel-step p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.step ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

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

/* Crypto Steps Enhanced */
.crypto-steps {
    margin: 2rem 0;
}

.crypto-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 1px solid rgba(0, 175, 240, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 175, 240, 0.3);
    font-size: 1.2rem;
}

.crypto-step div:last-child {
    flex: 1;
}

.crypto-step p {
    margin: 0 0 1rem 0;
    color: #2d3748;
    font-weight: 600;
    font-size: 1.1rem;
}

.crypto-step ul {
    margin: 0;
    list-style: none;
}

.crypto-step li {
    padding: 0.5rem 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-step li:before {
    content: "→";
    color: #00AFF0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Expert Advice Section */
.expert-advice-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.expert-advice-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 175, 240, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.expert-advice-section h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.expert-advice-section h4::before {
    content: '🧠';
    font-size: 1.5rem;
}

.expert-advice-section blockquote {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 0;
    font-style: italic;
    border-left: 4px solid #00AFF0;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    quotes: '"' '"';
}

.expert-advice-section blockquote::before {
    content: open-quote;
    font-size: 3rem;
    color: #00AFF0;
    position: absolute;
    top: -10px;
    left: 10px;
}

/* Bio Section Enhanced */
.bio-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 175, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.bio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #00AFF0, #0084FF, #FF1B7D);
}

.bio-section h4 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bio-section h4::before {
    content: '📄';
    font-size: 1.3rem;
}

.bio-section h5 {
    color: #00AFF0;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bio-section h5::before {
    content: '🔥';
    font-size: 1.1rem;
}

/* Why Section Enhanced */
.why-telegram-section, .ppv-importance-section, .telegram-promo-section, 
.cold-outreach-section, .subscriber-database-section, .ai-chatbot-section, 
.telegram-rules-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 175, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.why-telegram-section p, .ppv-importance-section p, .telegram-promo-section p, 
.cold-outreach-section p, .subscriber-database-section p, .ai-chatbot-section p, 
.telegram-rules-section p {
    color: #2d3748;
}

.why-telegram-section h5, .ppv-importance-section h5, .telegram-promo-section h5, 
.cold-outreach-section h5, .subscriber-database-section h5, .ai-chatbot-section h5, 
.telegram-rules-section h5 {
    color: #1a202c;
}

.why-telegram-section ul li, .ppv-importance-section ul li, .telegram-promo-section ul li, 
.cold-outreach-section ul li, .subscriber-database-section ul li, .ai-chatbot-section ul li, 
.telegram-rules-section ul li {
    color: #2d3748;
}

.why-telegram-section h4, .ppv-importance-section h4, .telegram-promo-section h4, 
.cold-outreach-section h4, .subscriber-database-section h4, .ai-chatbot-section h4, 
.telegram-rules-section h4 {
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-telegram-section h4::before {
    content: '🧠';
    font-size: 1.2rem;
}

.ppv-importance-section h4::before {
    content: '💰';
    font-size: 1.2rem;
}

.telegram-promo-section h4::before {
    content: '💰';
    font-size: 1.2rem;
}

.cold-outreach-section h4::before {
    content: '💌';
    font-size: 1.2rem;
}

.subscriber-database-section h4::before {
    ```text
    content: '📊';
    font-size: 1.2rem;
}

.ai-chatbot-section h4::before {
    content: '🤖';
    font-size: 1.2rem;
}

.telegram-rules-section h4::before {
    content: '⚠️';
    font-size: 1.2rem;
}

/* Special sections styling */
.avoid-note {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 6px solid #ef4444;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.15);
    position: relative;
}

.avoid-note::before {
    content: '💡';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.3rem;
}

.avoid-note p {
    margin: 0;
    color: #991b1b;
    font-weight: 600;
    line-height: 1.6;
}

.scaling-tips {
    background: linear-gradient(135deg, #ecfccb 0%, #d9f99d 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #65a30d;
}

.scaling-tips p {
    margin: 0.5rem 0;
    color: #365314;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scaling-tips p::before {
    content: '✅';
    font-size: 1.1rem;
}

.best-practices {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #0ea5e9;
}

.best-practices p {
    margin: 0.5rem 0;
    color: #0c4a6e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.best-practices p::before {
    content: '✅';
    font-size: 1.1rem;
}

.bot-tips {
    background: linear-gradient(135deg, #f3e8ff 0%, #ddd6fe 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #8b5cf6;
}

.bot-tips p {
    margin: 0.5rem 0;
    color: #581c87;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bot-tips p::before {
    content: '✅';
    font-size: 1.1rem;
}

/* Ensure all images are always visible and properly sized */
.community-image, 
.community-item-image,
.nav-brand .logo,
img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100% !important;
    min-height: 100px !important;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%) !important;
}

/* Force image loading and prevent blocking */
.community-image, 
.community-item-image,
.nav-brand .logo {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    object-fit: cover !important;
    border-radius: 16px !important;
}

/* Specific image loading guarantees */
.community-image {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%) !important;
}

.community-item-image {
    width: 100px !important;
    height: 100px !important;
    border-radius: 16px !important;
    object-fit: cover !important;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%) !important;
    flex-shrink: 0 !important;
}

/* Ensure logo is always visible and properly sized */
.header .nav-brand .logo,
.nav-brand .logo,
img.logo {
    height: 20px !important;
    max-height: 20px !important;
    width: auto !important;
    max-width: 60px !important;
    object-fit: contain !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* Community Stats */
.community-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 2rem 0;
    align-items: center;
}

.community-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, rgba(0, 175, 240, 0.1) 0%, rgba(0, 132, 255, 0.15) 100%);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d3748;
    border: 2px solid rgba(0, 175, 240, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 175, 240, 0.1);
}

.community-stats span:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 175, 240, 0.2);
    border-color: rgba(0, 175, 240, 0.4);
}

.community-stats i {
    color: #ffd700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.close {
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: bold;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

.modal-body input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.modal-body input:focus {
    border-color: #00AFF0;
}

.modal-body button {
    width: 100%;
    background: linear-gradient(135deg, #00AFF0 0%, #0084FF 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.modal-body button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 175, 240, 0.4);
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: #ffd700;
    margin-right: 0.5rem;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-links a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00AFF0;
}

.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-contact p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: #00AFF0;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .course-tabs {
        grid-template-columns: 1fr;
    }

    .communities-section {
        padding: 2rem 0;
    }

    .top-communities h3 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .top-communities h3::before {
        width: 40px;
        height: 4px;
    }

    .top-communities h3::after {
        width: 80px;
        height: 3px;
    }

    .free-communities h3, .paid-communities h3 {
        font-size: 1.5rem;
        padding-left: 0.5rem;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .community-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .community-card h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .community-badge {
        top: 15px;
        right: 15px;
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        border-radius: 20px;
        border: 2px solid white;
    }

    .community-stats {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }

    .community-stats span {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .join-button {
        padding: 1rem 2rem;
        font-size: 0.85rem;
        min-width: 120px;
    }

    .community-image {
        height: 200px;
    }

    .community-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .community-item-image {
        justify-self: center;
        width: 80px;
        height: 80px;
    }

    .community-info {
        text-align: center;
    }

    .community-info h4 {
        font-size: 1.2rem;
    }

    .community-stats {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .community-stats span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .join-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        min-width: 100px;
    }

    .community-badge {
        top: 12px;
        right: 12px;
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
        border-radius: 18px;
        border: 2px solid white;
    }

    .modal-content {
        margin: 20% auto;
        width: 95%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Enhanced mobile styling for course content */
    .goal-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .goal-section h4 {
        font-size: 1.3rem;
    }

    .goal-section p {
        font-size: 1rem;
    }

    .content-types-table, .schedule-table, .avoid-table, .methods-table, .formats-table, 
    .pricing-table, .cycle-table, .fatigue-table, .setup-table, .tagging-table, 
    .rules-table, .profile-table, .mistakes-table {
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .content-type-row, .schedule-row, .avoid-row, .method-row, .format-row, 
    .pricing-row, .cycle-row, .fatigue-row, .setup-row, .tag-row, .rule-row, 
    .profile-row, .mistake-row {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.5rem;
        text-align: left;
    }

    .example-post {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .example-post h5 {
        font-size: 1.1rem;
    }

    .example-post blockquote {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .expert-note, .pro-tip, .feed-vs-ppv, .insider-insight {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .expert-note::before, .pro-tip::before, .feed-vs-ppv::before, 
    .insider-insight::before, .avoid-note::before {
        font-size: 1.2rem;
        top: 0.8rem;
        right: 0.8rem;
    }

    .step, .funnel-step, .crypto-step {
        padding: 1.5rem;
        margin: 1rem 0;
        border-radius: 12px;
    }

    .crypto-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .expert-advice-section {
        padding: 2rem;
        margin: 2rem 0;
        border-radius: 12px;
    }

    .expert-advice-section h4 {
        font-size: 1.3rem;
    }

    .expert-advice-section blockquote {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .bio-section {
        padding: 2rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .bio-section h4 {
        font-size: 1.2rem;
    }

    .bio-section h5 {
        font-size: 1.1rem;
    }

    .why-telegram-section, .ppv-importance-section, .telegram-promo-section, 
    .cold-outreach-section, .subscriber-database-section, .ai-chatbot-section, 
    .telegram-rules-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    quality-tips ul {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .quality-tips ul li {
        padding: 0.8rem;
        border-radius: 8px;
    }

    .scaling-tips, .best-practices, .bot-tips {
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 8px;
    }

    .avoid-note {
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    .chat-messages {
        height: 300px;
    }

    .message-content {
        max-width: 85%;
    }

    /* Ultra-mobile optimizations */
    .goal-section {
        padding: 1.2rem;
        margin: 1rem 0;
        border-radius: 12px;
    }

    .goal-section h4 {
        font-size: 1.2rem;
    }

    .goal-section p {
        font-size: 0.95rem;
    }

    .content-types-table, .schedule-table, .avoid-table, .methods-table, .formats-table, 
    .pricing-table, .cycle-table, .fatigue-table, .setup-table, .tagging-table, 
    .rules-table, .profile-table, .mistakes-table {
        margin: 1rem 0;
    }

    .content-type-row, .schedule-row, .avoid-row, .method-row, .format-row, 
    .pricing-row, .cycle-row, .fatigue-row, .setup-row, .tag-row, .rule-row, 
    .profile-row, .mistake-row {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .example-post {
        padding: 1.2rem;
        margin: 1rem 0;
    }

    .example-post h5 {
        font-size: 1rem;
    }

    .example-post blockquote {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .expert-note, .pro-tip, .feed-vs-ppv, .insider-insight {
        padding: 1.2rem;
        margin: 1rem 0;
    }

    .expert-note p, .pro-tip p, .feed-vs-ppv p, .insider-insight p {
        font-size: 0.9rem;
    }

    .step, .funnel-step, .crypto-step {
        padding: 1.2rem;
        margin: 1rem 0;
    }

    .step h5, .funnel-step h5 {
        font-size: 1.1rem;
    }

    .step p, .funnel-step p, .crypto-step p {
        font-size: 0.9rem;
    }

    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }

    .expert-advice-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .expert-advice-section h4 {
        font-size: 1.2rem;
    }

    .expert-advice-section blockquote {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .bio-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .bio-section h4 {
        font-size: 1.1rem;
    }

    .bio-section h5 {
        font-size: 1rem;
    }

    .why-telegram-section h4, .ppv-importance-section h4, .telegram-promo-section h4, 
    .cold-outreach-section h4, .subscriber-database-section h4, .ai-chatbot-section h4, 
    .telegram-rules-section h4 {
        font-size: 1.1rem;
    }

    .why-telegram-section, .ppv-importance-section, .telegram-promo-section, 
    .cold-outreach-section, .subscriber-database-section, .ai-chatbot-section, 
    .telegram-rules-section {
        padding: 1.2rem;
        margin: 1rem 0;
    }

    .quality-tips ul li {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .scaling-tips p, .best-practices p, .bot-tips p {
        font-size: 0.9rem;
    }

    .avoid-note p {
        font-size: 0.9rem;
    }
}

    .communities-section {
        padding: 1.5rem 0;
    }

    .top-communities h3 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .top-communities h3::before {
        width: 35px;
        height: 3px;
    }

    .top-communities h3::after {
        width: 70px;
        height: 2px;
    }

    .community-grid {
        gap: 1.5rem;
    }

    .community-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .community-badge {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.6rem;
        border-radius: 15px;
        border: 2px solid white;
    }

    .community-stats {
        gap: 0.6rem;
        margin: 1.2rem 0;
    }

    .community-stats span {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .join-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.8rem;
        min-width: 110px;
    }

    .free-communities h3, .paid-communities h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .community-card {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .community-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .community-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .community-item {
        padding: 1rem;
        margin: 0 0.5rem 1rem 0.5rem;
    }

    .community-item-image {
        width: 70px;
        height: 70px;
    }

    .community-info h4 {
        font-size: 1.1rem;
    }

    .community-info p {
        font-size: 0.9rem;
    }

    .community-stats span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .join-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.75rem;
        min-width: 90px;
    }

    .community-badge {
        top: 8px;
        right: 8px;
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
        border-radius: 12px;
        border: 1px solid white;
    }

    .price {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .member-count {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Advertisement Banners */
.top-banner-ad {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    padding: 20px 0;
}

/* Cleopatra Mobile Banner 360x120 */
.banner-320x90 {
    width: 98%;
    max-width: 500px;
    height: 150px;
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    border: 3px solid #D4AF37;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 130px 1fr 70px;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 12px 40px rgba(212, 175, 55, 0.4), 
        0 0 0 1px rgba(212, 175, 55, 0.3), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.banner-320x90:hover {
    transform: scale(1.02);
    box-shadow: 
        0 16px 50px rgba(212, 175, 55, 0.5), 
        0 0 0 1px rgba(212, 175, 55, 0.4), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.banner-320x90:hover {
    transform: scale(1.02);
    box-shadow: 
        0 12px 40px rgba(212, 175, 55, 0.4), 
        0 0 0 1px rgba(212, 175, 55, 0.3), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.banner-320x90::after {
    content: '𓁹';
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 10px;
    color: #D4AF37;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
    pointer-events: none;
}

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

.banner-```text
320x90 .left-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-320x90 .logo {
    font-size: 2.5rem;
    color: #D4AF37;
    font-weight: 800;
}

.banner-320x90 .brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.banner-320x90 .brand-name {
    font-size: 1rem;
    font-weight: 800;
    color: #D4AF37;
    letter-spacing: 0.5px;
    font-family: 'Cinzel', serif;
}

.banner-320x90 .brand-sub {
    font-size: 0.7rem;
    color: #C0C0C0;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.banner-320x90 .center-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.banner-320x90 .main-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.banner-320x90 .works-text {
    font-size: 0.75rem;
    color: #C0C0C0;
    font-weight: 500;
    margin-bottom: 3px;
}

.banner-320x90 .sub-text {
    font-size: 0.75rem;
    color: #D4AF37;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.banner-320x90 .right-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-320x90 .cta-btn {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #1a1a2e;
    border: none;
    padding: 8px 14px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.4);
    margin-right: 8px;
}

.banner-320x90 .cta-btn:hover {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.banner-320x90 .glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #D4AF37, transparent, #D4AF37);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.banner-320x90:hover .glow-effect {
    opacity: 0.5;
}

.banner-320x90 .border-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    pointer-events: none;
}

.top-banner-frame {
    max-width: 1200px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

.left-side-banner, .right-side-banner {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
}

.left-side-banner {
    left: 10px;
}

.right-side-banner {
    right: 10px;
}

.mobile-banner-ad {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    text-align: center;
    margin: 20px 0;
}

.ad-container {
    background: white;
    border-radius: 8px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.ad-container[data-size="728x90"] {
    width: 100%;
    height: 90px;
}

.ad-container[data-size="160x600"] {
    width: 160px;
    height: 600px;
}

.ad-container[data-size="320x90"] {
    width: 98%;
    max-width: 500px;
    height: 150px;
}

.ad-container[data-size="320x100"] {
    width: 320px;
    height: 100px;
    max-width: 90%;
}

.ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #a0aec0;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(45deg, #f7fafc 25%, transparent 25%), 
                linear-gradient(-45deg, #f7fafc 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f7fafc 75%), 
                linear-gradient(-45deg, transparent 75%, #f7fafc 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Adjust main content margins for side banners on desktop */
@media (min-width: 1400px) {
    body {
        margin-left: 180px;
        margin-right: 180px;
    }
}

/* Responsive behavior - hide side banners on smaller screens */
@media (max-width: 1399px) {
    .left-side-banner, .right-side-banner {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .top-banner-ad {
        display: none;
    }

    body {
        margin-left: 0;
        margin-right: 0;
    }
}

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

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #00AFF0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.content-body h5 {
    color: #00AFF0 !important;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-body h4 {
    color: #1a202c !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.content-body strong {
    color: #2d3748 !important;
}

.content-body em {
    color: #4a5568 !important;
}

/* Default text colors for content body - DARK text on light background */
.content-body, .content-body * {
    color: #2d3748 !important;
}

.content-body h3 {
    color: #1a202c !important;
}

.content-body h4 {
    color: #1a202c !important;
}

.content-body h5 {
    color: #00AFF0 !important;
}

.content-body p {
    color: #2d3748 !important;
}

.content-body ul, .content-body ol {
    color: #2d3748 !important;
}

.content-body li {
    color: #2d3748 !important;
}

.content-body a {
    color: #00AFF0 !important;
}

.content-body blockquote {
    color: #4a5568 !important;
}

.content-body .step-number {
    color: white !important;
}

.content-body .community-badge {
    color: #744210 !important;
}

.content-body .join-button {
    color: white !important;
}

.content-body .telegram-cta a {
    color: white !important;
}

.content-body .admin-username {
    color: white !important;
}
/* Cleopatra Management 160x600 Banner Styles */
.banner-160x600 {
    width: 160px;
    height: 600px;
    padding: 20px;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(75, 0, 130, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    border: 3px solid #d4af37;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.banner-160x600:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.02);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.7);
}

.banner-160x600::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(75, 0, 130, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.banner-160x600 .top-section {
    text-align: center;
    margin-bottom: 20px;
}

.banner-160x600 .logo-symbol {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-160x600 .main-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.banner-160x600 .sub-title {
    font-size: 0.65rem;
    color: #c0c0c0;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-top: 5px;
}

.banner-160x600 .egyptian-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    gap: 5px;
}

.banner-160x600 .hieroglyph-ornament {
    color: #d4af37;
    font-size: 0.8rem;
}

.banner-160x600 .golden-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    flex: 1;
}

.banner-160x600 .highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    margin: 15px 0;
}

.banner-160x600 .highlight-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.banner-160x600 .highlight-symbol {
    color: #d4af37;
    font-size: 1rem;
}

.banner-160x600 .feature-list {
    margin: 15px 0;
}

.banner-160x600 .feature-item {
    font-size: 0.65rem;
    color: #e0e0e0;
    margin-bottom: 6px;
    padding-left: 5px;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    line-height: 1.2;
}

.banner-160x600 .stats-section {
    text-align: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 10px;
    margin: 15px 0;
}

.banner-160x600 .stat-number {
    font-size: 1rem;
    font-weight: 800;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 3px;
}

.banner-160x600 .stat-label {
    font-size: 0.6rem;
    color: #c0c0c0;
    margin-bottom: 5px;
}

.banner-160x600 .stat-symbol {
    color: #d4af37;
    font-size: 0.8rem;
}

.banner-160x600 .cta-button {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1a2e;
    border: none;
    padding: 10px;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.banner-160x600 .cta-button:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.banner-160x600 .bottom-hieroglyph {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Responsive adjustments for side banners */
@media (max-width: 1399px) {
    .banner-160x600 {
        display: none;
    }
}