/* Button styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

/* Player controls */
.player-container {
    position: relative;
    padding-bottom: 56.25%;
    background: black;
}

.player-controls {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1rem;
}

/* Navigation tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tab {
    padding: 1rem 2rem;
    cursor: pointer;
}

.tab.active {
    border-bottom: 3px solid var(--primary);
}

/* Rating Widget Styles */
.rating-widget {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stars {
    font-size: 24px;
    cursor: pointer;
    margin: 10px 0;
}

.star {
    color: #ccc;
    margin-right: 5px;
    transition: color 0.2s;
}

.star:hover, .star.active {
    color: #ffc107;
}

.rating-feedback {
    margin-top: 5px;
    font-style: italic;
    color: #666;
}

/* Views Counter Styles */
.views-counter {
    margin: 15px 0;
    font-size: 16px;
    color: #666;
}

.views-counter i {
    margin-right: 5px;
    color: #4a4a4a;
}

/* Comments Section Styles */
.comments-section {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.comments-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.comment {
    padding: 10px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.comment-text {
    margin: 0 0 5px 0;
}

.comment-meta {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    min-height: 80px;
    resize: vertical;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    margin: 0 15px 10px 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Cookie Modal Styles */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-option {
    margin: 15px 0;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.cookie-option label {
    display: block;
    cursor: pointer;
    font-weight: bold;
}

.cookie-description {
    display: block;
    font-weight: normal;
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.cookie-modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

/* Payment modal styles */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.payment-modal {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

.modal-header h3 {
    margin: 0;
    color: var(--text-light);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Premium content locked state */
.premium-locked {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-lock-overlay {
    text-align: center;
    padding: 2rem;
}

.lock-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.premium-locked h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.premium-locked .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 1rem 0;
}

.access-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Crypto payment styles */
.crypto-address {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crypto-address code {
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.qrcode {
    text-align: center;
    margin: 1rem 0;
}

.qrcode img {
    max-width: 200px;
    border-radius: 6px;
}

/* Bank details styles */
.bank-details {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.bank-details p {
    margin: 0.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .subscription-plans {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-row label {
        flex: none;
        text-align: left;
        margin-bottom: 0.5rem;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .targeting-options {
        grid-template-columns: 1fr 1fr;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* Footer Styles */
.footer-container {
    background: var(--footer-bg, #1a1a1a);
    color: var(--text-lighter);
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid var(--gray-300);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social-column {
    min-width: 150px;
    text-align: right;
}

.footer-social-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-lighter);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-300);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin: 0.5rem 0;
    color: var(--text-lighter);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-main-section {
        gap: 1.5rem;
    }
    
    .footer-column {
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .footer-main-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column, .footer-social-column {
        min-width: 100%;
        max-width: 100%;
    }
    
    .footer-social-column {
        text-align: left;
        order: 5; /* Move social to bottom on mobile */
    }
    
    .footer-social-column h4 {
        text-align: left;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-main-section {
        gap: 1.5rem;
    }
    
    .footer-column h4, .footer-social-column h4 {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* Footer Styles */
.footer-container {
    background: var(--footer-bg, #1a1a1a);
    color: var(--text-lighter);
    padding: 2rem 0 1rem;
    margin-top: 3rem;
    border-top: 1px solid var(--gray-300);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem; /* Single spacing between links */
}

.footer-links a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    line-height: 1.3; /* Tighter line spacing */
    padding: 0.1rem 0; /* Minimal vertical padding */
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social-column {
    min-width: 150px;
    text-align: right;
}

.footer-social-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 0.7rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; /* Slightly smaller */
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-lighter);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-300);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin: 0.4rem 0;
    color: var(--text-lighter);
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-main-section {
        gap: 1.2rem;
    }
    
    .footer-column {
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .footer-main-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-column, .footer-social-column {
        min-width: 100%;
        max-width: 100%;
    }
    
    .footer-social-column {
        text-align: left;
        order: 5;
    }
    
    .footer-social-column h4 {
        text-align: left;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-links {
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .footer-main-section {
        gap: 1.2rem;
    }
    
    .footer-container {
        padding: 1.5rem 0 0.8rem;
    }
    
    .footer-column h4, .footer-social-column h4 {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

.dropdown-toggle {
    background: #000;
    color: #8BC34A;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle:hover { color: #ff4444 !important; }
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 0.7rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #8BC34A;
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 0.25rem 0;
}

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

/* Hide dropdown when clicking outside */
.dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

.dropdown-backdrop.show {
    display: block;
}


/* Account Dropdown Styles */
.account-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: #000;
    color: #8BC34A;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle:hover {
    background: #ff4444 !important;
    color: white !important;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 0.7rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    min-width: 150px;
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.2s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #8BC34A;
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 0.25rem 0;
}

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

.dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

.dropdown-backdrop.show {
    display: block;
}
