/* Content Styles for VOX Casino - Separate from main styles */

/* Content Container */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
    box-sizing: border-box;
}

/* Typography Enhancements */
.content-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #d4af37;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #d4af37;
    padding-left: 1rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Paragraph Styling */
.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* List Styling */
.content-section ul,
.content-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 0.8rem;
    position: relative;
}

.content-section ul li::before {
    content: '•';
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
    font-size: 1.2rem;
}

.content-section ol li {
    counter-increment: list-counter;
    padding-left: 0.5rem;
}

.content-section ol li::marker {
    color: #d4af37;
    font-weight: bold;
}

/* Table Styling */
.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.content-section table th {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #000;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.content-section table td {
    padding: 1rem;
    text-align: center;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.content-section table tr:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Highlighted Text */
.content-section strong,
.content-section b {
    color: #d4af37;
    font-weight: 600;
}

.content-section em {
    color: #f4e4bc;
    font-style: italic;
}

/* Special Elements */
.content-section .highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 188, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.content-section .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e4bc 100%);
    border-radius: 10px 10px 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section {
        padding: 20px 15px;
        margin: 20px 10px;
    }
    
    .content-section h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .content-section table {
        font-size: 0.9rem;
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        min-width: 600px;
    }
    
    .content-section table th,
    .content-section table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .content-section h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
    
    .content-section table {
        font-size: 0.8rem;
    }
}

/* Animation for content appearance */
.content-section {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Special styling for bonus information */
.bonus-info {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 228, 188, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-info::before {
    content: '🎁';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    opacity: 0.3;
    transform: rotate(15deg);
}

/* VIP section styling */
.vip-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 228, 188, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.vip-section h3 {
    color: #d4af37;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Payment methods styling */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Game categories styling */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.game-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.game-category h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Support section styling */
.support-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 188, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.support-section h3 {
    color: #d4af37;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Responsible gaming section */
.responsible-gaming {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(129, 199, 132, 0.05) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.responsible-gaming h3 {
    color: #4caf50;
    text-align: center;
    margin-bottom: 1.5rem;
} 

.bonus-info,
.vip-section,
.support-section,
.responsible-gaming {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-section table {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
} 