/**
 * Trinetra Ganesh Temple Darshan - Main Stylesheet
 * Matching namandarshan.com design theme
 * Version: 2.0.0
 */

/* ===== Color Variables (namandarshan.com theme) ===== */
:root {
    --primary-orange: #FF6B35;
    --primary-dark: #1A3A52;
    --primary-teal: #0D3B4F;
    --accent-gold: #FFA900;
    --accent-yellow: #FFD93D;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --success-green: #10B981;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --rating-star: #FFB800;
    --border-light: #E5E7EB;
}

/* ===== Global Styles ===== */
.tgd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tgd-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== Breadcrumb Navigation ===== */
.tgd-breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    margin-bottom: 30px;
}

.tgd-breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.tgd-breadcrumb-item {
    display: flex;
    align-items: center;
}

.tgd-breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.tgd-breadcrumb-item a:hover {
    color: var(--primary-orange);
}

.tgd-breadcrumb-separator {
    margin: 0 10px;
    color: var(--text-light);
}

.tgd-breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== Puja Single Page Layout ===== */
.tgd-puja-single {
    margin: 40px 0;
}

.tgd-puja-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* ===== Image Carousel Section ===== */
.tgd-carousel-section {
    position: relative;
}

.tgd-carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--primary-teal);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.tgd-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.tgd-carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.tgd-carousel-slide {
    min-width: 100%;
    position: relative;
}

.tgd-carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Nakshatra Badge */
.tgd-nakshatra-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 169, 0, 0.4);
    z-index: 10;
}

.tgd-nakshatra-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-dark);
}

/* Carousel Text Overlay */
.tgd-carousel-text {
    position: absolute;
    bottom: 50px;
    left: 40px;
    color: var(--white);
    z-index: 5;
}

.tgd-carousel-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.tgd-carousel-title-highlight {
    color: var(--accent-yellow);
}

/* Swipe Indicator */
.tgd-swipe-indicator {
    position: absolute;
    bottom: 30px;
    left: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.tgd-swipe-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Navigation Arrows */
.tgd-carousel-prev,
.tgd-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.tgd-carousel-prev {
    left: 20px;
}

.tgd-carousel-next {
    right: 20px;
}

.tgd-carousel-prev:hover,
.tgd-carousel-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.tgd-carousel-prev svg,
.tgd-carousel-next svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

/* Carousel Dots */
.tgd-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.tgd-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.tgd-carousel-dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 5px;
}

/* ===== Puja Info Section ===== */
.tgd-puja-info {
    display: flex;
    flex-direction: column;
}

/* Category Badge */
.tgd-category-badge {
    display: inline-block;
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

/* Puja Title */
.tgd-puja-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px;
    line-height: 1.2;
}

/* Puja Subtitle */
.tgd-puja-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin: 0 0 25px;
    line-height: 1.5;
}

/* Temple Location */
.tgd-temple-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tgd-location-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-orange);
    flex-shrink: 0;
}

/* Puja Date */
.tgd-puja-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.tgd-calendar-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-orange);
    flex-shrink: 0;
}

/* Countdown Timer */
.tgd-countdown-section {
    margin: 25px 0;
}

.tgd-countdown-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.tgd-countdown-timer {
    display: flex;
    gap: 15px;
}

.tgd-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tgd-countdown-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
    min-width: 50px;
    text-align: center;
}

.tgd-countdown-unit {
    font-size: 13px;
    color: var(--text-light);
    text-transform: capitalize;
    margin-top: 5px;
}

/* Social Proof Section */
.tgd-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
}

/* User Avatars */
.tgd-user-avatars {
    display: flex;
    margin-right: 10px;
}

.tgd-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tgd-user-avatar:first-child {
    margin-left: 0;
}

/* Rating */
.tgd-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tgd-rating-stars {
    color: var(--rating-star);
    font-size: 20px;
}

.tgd-rating-text {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.tgd-rating-count {
    color: var(--text-light);
    font-weight: 400;
}

/* Participants Count */
.tgd-participants {
    margin: 20px 0 30px;
    font-size: 15px;
    color: var(--text-light);
}

.tgd-participants-count {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 17px;
}

/* CTA Button */
.tgd-cta-button {
    background: var(--success-green);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.tgd-cta-button:hover {
    background: #0D9668;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.tgd-cta-button svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* ===== Tab Navigation ===== */
.tgd-tabs {
    margin: 50px 0 30px;
    border-bottom: 2px solid var(--border-light);
}

.tgd-tab-nav {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.tgd-tab-button {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tgd-tab-button:hover {
    color: var(--text-dark);
}

.tgd-tab-button.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

/* Tab Content */
.tgd-tab-content {
    display: none;
    padding: 40px 0;
    animation: fadeIn 0.4s ease-in-out;
}

.tgd-tab-content.active {
    display: block;
}

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

/* About Puja Content */
.tgd-about-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.tgd-about-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: var(--text-dark);
    margin: 30px 0 20px;
}

.tgd-about-content h3 svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-orange);
}

.tgd-about-content p {
    margin: 15px 0;
    font-size: 16px;
}

/* Benefits List */
.tgd-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.tgd-benefit-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    transition: all 0.3s;
}

.tgd-benefit-item:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.tgd-benefit-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.tgd-benefit-text h4 {
    font-size: 17px;
    margin: 0 0 8px;
    color: var(--text-dark);
}

.tgd-benefit-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Process Steps */
.tgd-process-steps {
    display: grid;
    gap: 30px;
    margin: 20px 0;
}

.tgd-process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tgd-step-number {
    background: var(--primary-orange);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.tgd-step-content h4 {
    font-size: 18px;
    margin: 5px 0 10px;
    color: var(--text-dark);
}

.tgd-step-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* Temple Details */
.tgd-temple-details {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.tgd-detail-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.tgd-detail-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 180px;
}

.tgd-detail-value {
    color: var(--text-light);
}

/* Packages */
.tgd-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.tgd-package-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.tgd-package-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.tgd-package-popular {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tgd-package-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.tgd-package-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0 0 20px;
}

.tgd-package-price span {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

.tgd-package-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.tgd-package-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
}

.tgd-package-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--success-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.tgd-package-button {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.tgd-package-button:hover {
    background: #E55A2B;
    transform: scale(1.02);
}

/* Reviews */
.tgd-reviews-summary {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.tgd-reviews-rating {
    text-align: center;
}

.tgd-reviews-score {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.tgd-reviews-stars {
    color: var(--rating-star);
    font-size: 24px;
    margin: 10px 0;
}

.tgd-reviews-count {
    color: var(--text-light);
    font-size: 14px;
}

.tgd-reviews-breakdown {
    flex: 1;
}

.tgd-rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.tgd-rating-bar-label {
    font-size: 14px;
    color: var(--text-dark);
    min-width: 60px;
}

.tgd-rating-bar-track {
    flex: 1;
    height: 8px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}

.tgd-rating-bar-fill {
    height: 100%;
    background: var(--rating-star);
    border-radius: 10px;
    transition: width 0.5s ease-out;
}

.tgd-rating-bar-count {
    font-size: 13px;
    color: var(--text-light);
    min-width: 40px;
    text-align: right;
}

.tgd-reviews-list {
    display: grid;
    gap: 20px;
}

.tgd-review-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 25px;
}

.tgd-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tgd-review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tgd-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.tgd-review-author-info h5 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.tgd-review-date {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 3px;
}

.tgd-review-rating {
    color: var(--rating-star);
    font-size: 16px;
}

.tgd-review-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* FAQs */
.tgd-faq-list {
    display: grid;
    gap: 15px;
}

.tgd-faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.tgd-faq-question {
    width: 100%;
    background: var(--bg-light);
    border: none;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.tgd-faq-question:hover {
    background: #EEEFF1;
}

.tgd-faq-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-orange);
    transition: transform 0.3s;
}

.tgd-faq-item.active .tgd-faq-icon {
    transform: rotate(180deg);
}

.tgd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.tgd-faq-item.active .tgd-faq-answer {
    max-height: 500px;
}

.tgd-faq-answer-content {
    padding: 20px 25px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Booking Modal ===== */
.tgd-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.tgd-modal.active {
    display: flex;
}

.tgd-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
}

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

.tgd-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border-light);
}

.tgd-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.tgd-modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.tgd-modal-title {
    font-size: 24px;
    margin: 0;
    color: var(--text-dark);
}

.tgd-modal-body {
    padding: 30px;
}

.tgd-form-group {
    margin-bottom: 20px;
}

.tgd-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tgd-form-input,
.tgd-form-select,
.tgd-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.tgd-form-input:focus,
.tgd-form-select:focus,
.tgd-form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.tgd-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.tgd-form-submit {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.tgd-form-submit:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tgd-form-submit:disabled {
    background: #D1D5DB;
    cursor: not-allowed;
    transform: none;
}

/* ===== Puja List Grid ===== */
.tgd-puja-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tgd-puja-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.tgd-puja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tgd-puja-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tgd-puja-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tgd-puja-card:hover .tgd-puja-card-image img {
    transform: scale(1.1);
}

.tgd-puja-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.tgd-puja-card-body {
    padding: 25px;
}

.tgd-puja-card-category {
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.tgd-puja-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}

.tgd-puja-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 15px;
    line-height: 1.6;
}

.tgd-puja-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.tgd-puja-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.tgd-puja-card-rating-stars {
    color: var(--rating-star);
}

.tgd-puja-card-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.tgd-puja-card-link:hover {
    gap: 10px;
}

/* ===== Live Darshan ===== */
.tgd-live-darshan {
    margin: 40px 0;
}

.tgd-live-header {
    text-align: center;
    margin-bottom: 40px;
}

.tgd-live-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px;
}

.tgd-live-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.tgd-live-video-container {
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.tgd-live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #EF4444;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: pulse 2s infinite;
}

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

.tgd-live-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.tgd-live-video {
    width: 100%;
    aspect-ratio: 16/9;
}

/* ===== Utility Classes ===== */
.tgd-text-center {
    text-align: center;
}

.tgd-mt-20 {
    margin-top: 20px;
}

.tgd-mb-20 {
    margin-bottom: 20px;
}

.tgd-hidden {
    display: none !important;
}

/* ===== Loading State ===== */
.tgd-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Success/Error Messages ===== */
.tgd-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 15px;
}

.tgd-message-success {
    background: #D1FAE5;
    color: #065F46;
    border-left: 4px solid #10B981;
}

.tgd-message-error {
    background: #FEE2E2;
    color: #991B1B;
    border-left: 4px solid #EF4444;
}

.tgd-message-info {
    background: #DBEAFE;
    color: #1E40AF;
    border-left: 4px solid #3B82F6;
}
