@charset "UTF-8";

/* ==========================================================================
   Repo Fes Special Style
   Theme: Yellow / Black / White + TV Static Noise
   ========================================================================== */

:root {
    --repo-yellow: #FFD700;
    --repo-black: #111111;
    --repo-white: #ffffff;
    --repo-accent: #FF3333;
    --repo-gray: #333333;
}

/* Background Noise Effect */
body {
    background-color: var(--repo-black);
    position: relative;
    color: var(--repo-white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imgs/repo-fes_icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.45;
}

/* Header & Nav Overrides */
header {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Main Container */
.main-repo {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Header */
.repo-header {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 4px solid var(--repo-yellow);
    padding-bottom: 20px;
}

.repo-title {
    font-size: 3.5rem;
    color: var(--repo-yellow);
    text-shadow: 4px 4px 0px #000, -2px -2px 0 var(--repo-white);
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.2;
}

.repo-subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--repo-white);
    font-weight: normal;
    letter-spacing: 5px;
    margin-top: 5px;
}

.repo-desc {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
}

/* Sections */
.repo-section {
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid var(--repo-yellow);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.repo-h3 {
    font-size: 2rem;
    color: var(--repo-black);
    background-color: var(--repo-yellow);
    display: table;
    margin: -45px auto 20px;
    padding: 5px 30px;
    transform: skew(-10deg);
    border: 2px solid var(--repo-white);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

/* Video Container */
.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border: 3px solid var(--repo-white);
    border-radius: 8px;
    margin-bottom: 20px;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* Buttons */
.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.repo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none !important;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.repo-btn i {
    margin-right: 8px;
}

.btn-yellow {
    background-color: var(--repo-yellow);
    color: var(--repo-black) !important;
    border: 2px solid var(--repo-yellow);
}

.btn-black {
    background-color: var(--repo-black);
    color: var(--repo-yellow) !important;
    border: 2px solid var(--repo-yellow);
}

.repo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Result Section */
.winner-box {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--repo-yellow);
}

.crown-icon {
    font-size: 3rem;
    color: var(--repo-yellow);
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.winner-title {
    font-size: 1.5rem;
    color: var(--repo-white);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-align: center;
}

.team-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--repo-yellow);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.team-members {
    font-size: 1rem;
    color: #dddddd;
}

.team-members span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    margin: 2px;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.award-item {
    background: rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--repo-yellow);
    padding: 15px;
    border-radius: 4px;
}

.award-label {
    display: block;
    font-size: 0.8rem;
    color: var(--repo-yellow);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.award-winner {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--repo-white);
}

/* Information Links */
.info-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    background: var(--repo-white);
    color: var(--repo-black) !important;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: transform 0.2s;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: scale(1.02);
    border-color: var(--repo-yellow);
    background: #fffbe6;
}

.info-card .icon {
    font-size: 1.8rem;
    margin-right: 15px;
    color: var(--repo-black);
    width: 40px;
    text-align: center;
}

.info-card .text strong {
    display: block;
    font-size: 1rem;
}

.info-card .text span {
    font-size: 0.8rem;
    color: #666;
}

.contact-area {
    text-align: center;
    color: #888;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Back Button */
.back-to-top-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--repo-yellow);
    color: var(--repo-yellow) !important;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
}

.back-to-top-btn:hover {
    background-color: var(--repo-yellow);
    color: var(--repo-black) !important;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .repo-title {
        font-size: 2rem;
    }

    .team-name {
        font-size: 1.8rem;
    }

    .repo-section {
        padding: 40px 15px 20px;
    }

    .repo-h3 {
        font-size: 1.5rem;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Detailed Awards Styles */
.sub-title {
    text-align: center;
    color: var(--repo-yellow);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.clip-list-link-box {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.detailed-awards .award-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.award-team {
    display: block;
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 3px;
}

.award-comment {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #e0e0e0;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 4px;
}

.award-comment a {
    color: var(--repo-white);
    transition: color 0.2s;
}

.award-comment a:hover {
    color: var(--repo-yellow);
}

/* Participants Section */
.participants-img-box {
    text-align: center;
    margin-bottom: 30px;
}

.participants-img {
    max-width: 100%;
    border-radius: 10px;
    border: 3px solid var(--repo-yellow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.participants-img:hover {
    transform: scale(1.02);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.team-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--repo-gray);
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-card:hover {
    border-color: var(--repo-yellow);
    background: rgba(20, 20, 20, 0.8);
    transform: translateY(-2px);
}

/* Removed redundant team text styles (title, members, comment) */

/* Team Image Styles */
.team-img-box {
    text-align: center;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
}

.team-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}