/* Contest Tracker specific styles */
    .idol-tracker-content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .creator-info {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        align-items: start;
    }

    .cover-showcase {
        margin: 0;
    }

    .cover-showcase .cover-image {
        max-width: 200px;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
    }

    .cover-showcase .cover-image:hover {
        transform: scale(1.05);
    }

    .creator-details h3 {
        color: #FFF600;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .creator-table {
        display: grid;
        gap: 0.5rem;
    }

    .creator-row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .creator-label {
        font-weight: 700;
        color: #FFF600;
        min-width: 4rem;
    }

    .creator-name {
        color: #ffffff;
        font-weight: 600;
    }

    .story-summary {
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        border-left: 4px solid #FFF600;
    }

    .story-summary h3 {
        color: #FFF600;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .story-summary p {
        line-height: 1.6;
        font-size: 1.05rem;
    }

    .judge-comments h3 {
        color: #FFF600;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .comments-grid {
        display: grid;
        gap: 1.5rem;
    }

    .judge-comment {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        padding: 1.5rem;
        border-left: 4px solid #FFA500;
        margin: 0;
    }

    .judge-comment p {
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .judge-comment cite {
        color: #FFA500;
        font-weight: 600;
        font-style: normal;
        font-size: 0.9rem;
    }

    /* Contest Tracker Sidebar Styles */
    .contest-tracker {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .tracker-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1rem;
        background: rgba(255, 246, 0, 0.1);
        border-radius: 8px;
        border: 2px solid rgba(255, 246, 0, 0.3);
    }

    .tracker-logo {
        flex-shrink: 0;
        border-radius: 4px;
    }

    .tracker-title h3 {
        color: #FFF600;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        font-weight: 700;
    }

    .tracker-title p {
        color: #ffffff;
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
    }

    .rounds-container {
        display: grid;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .round-box {
        border-radius: 8px;
        padding: 1rem;
        border: 2px solid;
        transition: all 0.3s ease;
    }

    .round-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .round-success {
        background: rgba(76, 175, 80, 0.15);
        border-color: rgba(76, 175, 80, 0.4);
    }

    .round-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .round-header h4 {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
    }

    .round-header a {
        color: #FFF600;
        font-weight: 700;
        text-decoration: none;
    }

    .round-header a:hover {
        color: #FF6600;
        text-decoration: underline;
    }

    .round-icon {
        flex-shrink: 0;
    }

    .round-details {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .round-details p {
        margin-bottom: 0.5rem;
    }

    .round-details p:last-child {
        margin-bottom: 0;
    }

    .final-result {
        color: #FFF600;
        font-weight: 700;
        font-size: 1rem;
    }

    .thank-you {
        color: #4CAF50;
        font-style: italic;
    }

    .standings-link {
        color: #FFA500;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .tracker-links {
        padding-top: 1rem;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
    }

    .tracker-links h4 {
        color: #FFF600;
        font-size: 1rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .link-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .link-list a {
        display: block;
        padding: 0.5rem;
        background: rgba(255, 246, 0, 0.1);
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .link-list a:hover {
        background: rgba(255, 246, 0, 0.2);
        transform: translateY(-1px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .idol-tracker-content {
            padding: 1rem;
        }
        
        .creator-info {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 1rem;
        }
        
        .cover-showcase .cover-image {
            max-width: 150px;
            margin: 0 auto;
        }
        
        .creator-row {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 0.25rem;
        }
        
        .story-summary,
        .judge-comment {
            padding: 1rem;
        }
        
        .tracker-header {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        
        .round-header {
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            text-align: center;
        }
        
        .contest-tracker {
            padding: 1rem;
        }
    }

    @media (max-width: 480px) {
        .tracker-title h3 {
            font-size: 1rem;
        }
        
        .round-box {
            padding: 0.75rem;
        }
        
        .round-header h4 {
            font-size: 0.9rem;
        }
    }

/* Round 1 specific styles - extending contestant.css */
    .round-content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .round-info {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2rem;
        align-items: start;
    }

    .pitch-content p {
        margin-bottom: 1.5rem;
        line-height: 1.7;
        font-size: 1.05rem;
    }

    .pitch-content p:last-of-type {
        margin-bottom: 2rem;
    }

    .tagline {
        padding: 1.5rem;
        background: rgba(255, 246, 0, 0.1);
        border-left: 4px solid #FFF600;
        border-radius: 8px;
        text-align: center;
    }

    .tagline strong {
        color: #FFF600;
        font-size: 1.2rem;
        font-weight: 700;
    }

    /* Sidebar Styles */
    .round-sidebar {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .voting-results {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 1.5rem;
        border: 2px solid rgba(76, 175, 80, 0.4);
        border-left: 4px solid #4CAF50;
    }

    .voting-results h3 {
        color: #FFF600;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 700;
        text-align: center;
    }

    .voting-content h4 {
        color: #ffffff;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        font-weight: 600;
    }

    .vote-tally {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .vote-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
    }

    .vote-yes {
        border-left: 3px solid #4CAF50;
    }

    .vote-no {
        border-left: 3px solid #f44336;
    }

    .vote-label {
        font-weight: 700;
        min-width: 2.5rem;
    }

    .vote-yes .vote-label,
    .vote-yes .vote-count {
        color: #4CAF50;
    }

    .vote-no .vote-label,
    .vote-no .vote-count {
        color: #f44336;
    }

    .vote-count {
        font-weight: 700;
        font-size: 1.1rem;
    }

    .vote-result {
        text-align: center;
        padding: 1rem;
        background: rgba(76, 175, 80, 0.2);
        border-radius: 6px;
        border: 2px solid rgba(76, 175, 80, 0.4);
    }

    .vote-result strong {
        color: #4CAF50;
        font-size: 1.05rem;
    }

    .round-links {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .round-links h3 {
        color: #FFF600;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 700;
        text-align: center;
    }

    .link-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .link-list a {
        display: block;
        padding: 0.75rem;
        background: rgba(255, 246, 0, 0.1);
        border-radius: 6px;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
    }

    .link-list a:hover {
        background: rgba(255, 246, 0, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(255, 246, 0, 0.2);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .round-content {
            padding: 1rem;
        }
        
        .round-info {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 1rem;
        }
        
        .cover-showcase .cover-image {
            max-width: 200px;
            margin: 0 auto;
        }
        
        .pitch-content p {
            font-size: 1rem;
        }
        
        .tagline {
            padding: 1rem;
        }
        
        .tagline strong {
            font-size: 1.1rem;
        }
        
        .voting-results,
        .round-links {
            padding: 1rem;
        }
        
        .vote-item {
            padding: 0.5rem;
        }
    }

    @media (max-width: 480px) {
        .round-info {
            gap: 0.75rem;
        }
        
        .cover-showcase .cover-image {
            max-width: 150px;
        }
        
        .vote-tally {
            gap: 0.75rem;
        }
        
        .voting-results h3,
        .round-links h3 {
            font-size: 1rem;
        }
    }

/* Round 3 Sequential Preview specific styles */
    .sequentials-intro {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sequentials-intro p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0;
    }

    .sequentials-intro strong {
        color: #FFF600;
        font-weight: 700;
    }

    .sequentials-gallery {
        margin-bottom: 3rem;
    }

    .sequential-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        justify-items: center;
        margin-bottom: 1.5rem;
    }

    .sequential-item {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 1rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .sequential-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 246, 0, 0.3);
    }

    .sequential-image {
        width: 100%;
        max-width: 200px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .sequential-image:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .sequential-item figcaption {
        margin-top: 1rem;
        color: #FFF600;
        font-weight: 600;
        font-size: 1rem;
    }

    .gallery-instructions {
        text-align: center;
        font-style: italic;
        color: #cccccc;
        font-size: 0.9rem;
        margin: 0;
    }

    .download-section {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 2rem;
        border-left: 4px solid #FFF600;
        text-align: center;
    }

    .download-section h3 {
        color: #FFF600;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .download-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 1.5rem;
        background: rgba(255, 246, 0, 0.1);
        border-radius: 8px;
        border: 2px solid rgba(255, 246, 0, 0.3);
        transition: all 0.3s ease;
        flex-wrap: wrap;
    }

    .download-box:hover {
        background: rgba(255, 246, 0, 0.15);
        border-color: rgba(255, 246, 0, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 246, 0, 0.2);
    }

    .download-icon {
        flex-shrink: 0;
    }

    .download-link {
        color: #FFF600;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .download-link:hover {
        color: #FF6600;
        text-decoration: underline;
    }

    .file-size {
        color: #cccccc;
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .sequential-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
        }

        .sequential-item {
            padding: 0.75rem;
        }

        .sequential-image {
            max-width: 150px;
        }

        .sequentials-intro {
            padding: 1rem;
        }

        .sequentials-intro p {
            font-size: 1rem;
        }

        .download-section {
            padding: 1.5rem;
        }

        .download-box {
            flex-direction: column;
            gap: 0.75rem;
            padding: 1rem;
        }

        .download-link {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .sequential-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .sequential-image {
            max-width: 180px;
        }

        .download-section h3 {
            font-size: 1.1rem;
        }

        .download-box {
            padding: 0.75rem;
        }
    }

    /* Lightbox compatibility */
    .sequential-item a {
        display: block;
        text-decoration: none;
    }

    .sequential-item a:hover {
        text-decoration: none;
    }

/* Round 4 specific styles - extending contestant.css */
    .issue-info {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2rem;
        align-items: start;
        margin-bottom: 2rem;
    }

    .issue-details h3 {
        color: #FFF600;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .details-table {
        display: grid;
        gap: 0.75rem;
    }

    .detail-row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1rem;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        align-items: center;
    }

    .detail-label {
        font-weight: 700;
        color: #FFF600;
        min-width: 4rem;
    }

    .detail-value {
        color: #ffffff;
        font-weight: 600;
    }

    .issue-description {
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        border-left: 4px solid #FFF600;
    }

    .issue-description p {
        line-height: 1.7;
        font-size: 1.05rem;
        margin: 0;
    }

    .issue-description strong {
        color: #FFF600;
    }

    .issue-contents {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 2rem;
        border-left: 4px solid #FFA500;
    }

    .issue-contents h3 {
        color: #FFF600;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .contents-list {
        list-style: none;
        margin-bottom: 1.5rem;
        padding-left: 1rem;
    }

    .contents-list li {
        position: relative;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .contents-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #4CAF50;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .issue-contents p {
        font-size: 1.1rem;
        margin: 0;
        text-align: center;
    }

    .issue-contents strong {
        color: #FFF600;
    }

    /* Purchase Section Styles */
    .purchase-section {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 1.5rem;
        border: 2px solid rgba(255, 246, 0, 0.4);
        border-left: 4px solid #FFF600;
        margin-bottom: 2rem;
    }

    .purchase-section h3 {
        color: #FFF600;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        text-align: center;
    }

    .purchase-box {
        background: rgba(255, 246, 0, 0.1);
        border-radius: 8px;
        padding: 1.5rem;
        border: 2px solid rgba(255, 246, 0, 0.3);
    }

    .purchase-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .quantity-input {
        text-align: center;
    }

    .quantity-input label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #ffffff;
    }

    .quantity-field {
        width: 60px;
        padding: 0.5rem;
        border: 2px solid rgba(255, 246, 0, 0.5);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        font-weight: 600;
        text-align: center;
        font-size: 1rem;
    }

    .quantity-field:focus {
        outline: none;
        border-color: #FFF600;
        background: rgba(255, 255, 255, 0.2);
    }

    .purchase-btn {
        background: linear-gradient(135deg, #FFF600 0%, #FF6600 100%);
        color: #000000;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .purchase-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 246, 0, 0.4);
        background: linear-gradient(135deg, #FF6600 0%, #FFF600 100%);
    }

    .purchase-note {
        font-size: 0.8rem;
        color: #cccccc;
        text-align: center;
        line-height: 1.4;
        padding: 0.75rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 6px;
        border-left: 3px solid #FFA500;
    }

    .purchase-note strong {
        color: #FFA500;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .round-content {
            padding: 1rem;
        }
        
        .issue-info {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 1rem;
        }
        
        .cover-showcase .cover-image {
            max-width: 200px;
            margin: 0 auto;
        }
        
        .detail-row {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 0.25rem;
        }
        
        .issue-description,
        .issue-contents {
            padding: 1rem;
        }
        
        .purchase-section {
            padding: 1rem;
        }
        
        .purchase-box {
            padding: 1rem;
        }
        
        .contents-list li {
            padding-left: 1.25rem;
        }
    }

    @media (max-width: 480px) {
        .issue-info {
            gap: 0.75rem;
        }
        
        .cover-showcase .cover-image {
            max-width: 150px;
        }
        
        .purchase-section h3 {
            font-size: 1rem;
        }
        
        .purchase-btn {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
        
        .purchase-note {
            font-size: 0.75rem;
        }
    }