* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0d0d0d;
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.team-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(120deg, #ff8533 0%, #ff6b00 50%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: 2px;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 0, 0.3));
}

.team-number {
    font-size: 1.1rem;
    color: #888;
    font-weight: 500;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 107, 0, 0.2);
    animation: fadeIn 1s ease 0.3s both;
}

.video-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.4), rgba(255, 107, 0, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeIn 1s ease 0.5s both;
}

.link-item {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.link-item:hover::before {
    left: 100%;
}

.link-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-item:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 107, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.2);
}

.link-item:hover::after {
    opacity: 1;
}

.link-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, #ff7a1a 0%, #ff6000 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.25);
    transition: all 0.3s ease;
    color: #000;
}

.link-item:hover .link-icon {
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    transform: scale(1.05);
}

.link-content {
    flex: 1;
}

.link-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}

.link-description {
    font-size: 0.875rem;
    color: #999;
}

.link-arrow {
    font-size: 24px;
    color: #FF6B00;
    transition: transform 0.3s ease;
}

.link-item:hover .link-arrow {
    transform: translateX(5px);
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px 0;
    color: #666;
    font-size: 0.9rem;
    animation: fadeIn 1s ease 0.7s both;
}

.awards {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.award-badge {
    background: rgba(255, 107, 0, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: #FF8533;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .team-name {
        font-size: 2rem;
    }

    .logo {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .link-item {
        padding: 16px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .link-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-name {
        font-size: 1.6rem;
    }

    .awards {
        gap: 8px;
    }

    .award-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}