/* © WatchJunk */
/* coded by nya & suzunay */

.hero-card {
            background: linear-gradient(135deg, #1a0000, #330000, #4d0000);
            border-radius: 1rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #8b0000, #ff4040, #8b0000);
            opacity: 0.2;
            animation: bloodPulse 8s infinite ease-in-out;
            z-index: 0;
        }

        .hero-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 0, 0, 0.3), transparent);
            animation: bloodDrip 12s infinite linear;
            z-index: 0;
        }

        @keyframes bloodPulse {
            0% {
                transform: scale(1);
                opacity: 0.2;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.4;
            }

            100% {
                transform: scale(1);
                opacity: 0.2;
            }
        }

        @keyframes bloodDrip {
            0% {
                transform: translateY(0) rotate(45deg);
            }

            100% {
                transform: translateY(100%) rotate(45deg);
            }
        }

        .hero-card h1 {
            font-family: 'Audiowide', sans-serif;
            font-size: clamp(2rem, 6vw, 2.5rem);
            background: linear-gradient(90deg, #ff4040, #e0e0e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .poster-img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
            margin: 1rem auto;
            border: 2px solid #ff4040;
        }

        .info-card,
        .prize-card {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.5);
            transition: transform 0.3s;
            margin-bottom: 1rem;
        }

        .info-card:hover,
        .prize-card:hover {
            transform: translateY(-5px);
        }

        .info-card p,
        .prize-card p {
            font-size: clamp(0.9rem, 3vw, 1rem);
            margin: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-card i,
        .prize-card i {
            color: #ff4040;
            font-size: 1rem;
        }

        .prize-card i {
            color: #e0e0e0;
        }

        .btn-main,
        .btn-login,
        .btn-rules,
        .btn-stats,
        .btn-watch {
            border-radius: 2rem;
            padding: 0.6rem 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.2s, box-shadow 0.2s;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        }

        .btn-main:hover,
        .btn-login:hover,
        .btn-rules:hover,
        .btn-stats:hover,
        .btn-watch:hover {
            transform: scale(1.05);
            box-shadow: 0 0 1rem rgba(255, 64, 64, 0.5);
        }

        .btn-danger {
            background: linear-gradient(45deg, rgb(1, 45, 141), #0B1120);
            border: none;
        }

        .btn-secondary {
            background: linear-gradient(45deg, rgb(1, 45, 141), #0B1120);
            border: none;
        }

        .btn-login {
            background: linear-gradient(45deg, rgb(1, 45, 141), #0B1120);
            color: #fff;
        }

        .btn-login:hover {
            background: linear-gradient(45deg, rgb(1, 61, 189), #0B1120);
        }

        .btn-copy {
            border: 2px solid rgb(255, 255, 255);
            color: #e0e0e0;
            border-radius: 2rem;
            padding: 0.5rem 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 1rem auto;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        }

        .btn-copy:hover {
            transform: scale(1.05);
            border: 2px solid rgb(255, 255, 255);
            box-shadow: 0 0 1rem rgba(255, 64, 64, 0.5);
            background: #ff4040;
        }

        .btn-rules,
        .btn-stats,
        .btn-watch {
            background: linear-gradient(45deg, #ff4040, #ff6666);
            color: #fff;
            margin: 0.3rem;
        }

        .btn-rules:hover,
        .btn-stats:hover,
        .btn-watch:hover {
            background: linear-gradient(45deg, #ff6666, #ff4040);
        }

        .team-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 200px));
            gap: 1rem;
            justify-content: center;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .team-item {
            background: linear-gradient(135deg, #1a0000, #330000, #4d0000);
            border-radius: 0.75rem;
            padding: 0.8rem;
            text-align: center;
            box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.7);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 200px;
            margin: 0 auto;
        }

        .team-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 64, 64, 0.2), transparent);
            transition: transform 0.5s;
            z-index: 0;
        }

        .team-item:hover::before {
            transform: scale(1.5);
        }

        .team-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 0.3rem 0.9rem rgba(255, 64, 64, 0.5);
        }

        .team-item img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid #ff4040;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .team-item p {
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            font-weight: 700;
            margin: 0;
            color: #e0e0e0;
            position: relative;
            z-index: 1;
            text-shadow: 0 0 3px rgba(255, 64, 64, 0.5);
        }

        .team-item .members-icon {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            color: #ff4040;
            font-size: 0.9rem;
            cursor: pointer;
            z-index: 2;
        }

        .your-team-card {
            background: linear-gradient(135deg, #1a0000, #330000, #4d0000);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
        }

        .your-team-card img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #ff4040;
            margin-bottom: 0.8rem;
        }

        .your-team-card p {
            font-size: clamp(1rem, 3vw, 1.1rem);
            font-weight: 700;
            color: #e0e0e0;
            margin-bottom: 1rem;
        }

        .your-team-card .btn {
            margin: 0.3rem;
        }


        .member-list {
            margin-top: 0.8rem;
        }

        .member-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .member-item img {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            margin-right: 0.5rem;
            border: 2px solid #ff4040;
        }

        .member-item p {
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            margin: 0;
            color: #e0e0e0;
        }

        .rules-content {
            position: relative;
            z-index: 1;
            color: #e0e0e0;
            max-height: 400px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #ff4040 #2a2a2a;
        }

        .rules-content::-webkit-scrollbar {
            width: 6px;
        }

        .rules-content::-webkit-scrollbar-track {
            background: #2a2a2a;
            border-radius: 4px;
        }

        .rules-content::-webkit-scrollbar-thumb {
            background: #ff4040;
            border-radius: 4px;
        }

        .rules-content::-webkit-scrollbar-thumb:hover {
            background: #ff6666;
        }

        .rules-content h6 {
            color: #ff4040;
            font-weight: 700;
            margin-top: 1rem;
            margin-bottom: 0.5rem;
            font-size: clamp(1rem, 3vw, 1.1rem);
        }

        .rules-content ul {
            list-style-type: disc;
            padding-left: 1.2rem;
        }

        .rules-content li {
            margin-bottom: 0.4rem;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        }

        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 0.8rem;
            position: relative;
            z-index: 1;
        }

        .stats-table th,
        .stats-table td {
            padding: 0.5rem;
            text-align: left;
            border-bottom: 1px solid #ff4040;
            color: #e0e0e0;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        }

        .stats-table th {
            background: #2a2a2a;
            font-weight: 700;
        }

        .stats-table tr:hover {
            background: #333;
        }

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

            .hero-card {
                padding: 1.5rem;
            }

            .hero-card h1 {
                font-size: clamp(1.8rem, 5vw, 2rem);
            }

            .poster-img {
                max-width: 250px;
            }

            .btn-main,
            .btn-login,
            .btn-rules,
            .btn-stats,
            .btn-watch {
                padding: 0.5rem 1rem;
                font-size: clamp(0.7rem, 2.5vw, 0.8rem);
            }

            .btn-copy {
                padding: 0.4rem 0.8rem;
                font-size: clamp(0.7rem, 2.5vw, 0.8rem);
            }

            .team-list {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 0.8rem;
            }

            .team-item {
                padding: 0.6rem;
            }

            .team-item img {
                width: 40px;
                height: 40px;
            }

            .team-item p {
                font-size: clamp(0.7rem, 2.5vw, 0.8rem);
            }

            .your-team-card {
                padding: 1rem;
            }

            .your-team-card img {
                width: 60px;
                height: 60px;
            }

            .your-team-card p {
                font-size: clamp(0.9rem, 3vw, 1rem);
            }


            .rules-content {
                max-height: 350px;
            }

            .stats-table th,
            .stats-table td {
                padding: 0.4rem;
                font-size: clamp(0.7rem, 2.5vw, 0.8rem);
            }
        }

        @media (max-width: 576px) {
            .hero-card {
                padding: 1rem;
            }

            .hero-card h1 {
                font-size: clamp(1.5rem, 5vw, 1.8rem);
            }

            .poster-img {
                max-width: 200px;
            }

            .info-card,
            .prize-card {
                padding: 0.8rem;
            }

            .info-card p,
            .prize-card p {
                font-size: clamp(0.8rem, 3vw, 0.9rem);
                margin: 0.2rem 0;
                padding: 0.4rem;
                gap: 0.4rem;
                border-left: 2px solid #ff4040;
            }

            .prize-card i {
                font-size: 1rem;
            }

            .btn-main,
            .btn-login,
            .btn-rules,
            .btn-stats,
            .btn-watch,
            .btn-copy {
                padding: 0.7rem 1.5rem;
                font-size: clamp(0.8rem, 3vw, 0.9rem);
                width: 100%;
                max-width: 250px;
                margin: 0.2rem auto;
            }

            .d-flex.justify-content-center.gap-4,
            .d-flex.justify-content-center.gap-2 {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }

            .btn-copy {
                padding: 0.3rem 0.6rem;
                font-size: clamp(0.6rem, 2.5vw, 0.7rem);
            }

            .team-list {
                grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
                gap: 0.6rem;
            }

            .team-item {
                padding: 0.5rem;
            }

            .team-item img {
                width: 35px;
                height: 35px;
            }

            .team-item p {
                font-size: clamp(0.6rem, 2.5vw, 0.7rem);
            }

            .your-team-card {
                padding: 0.8rem;
            }

            .your-team-card img {
                width: 50px;
                height: 50px;
            }

            .your-team-card p {
                font-size: clamp(0.8rem, 3vw, 0.9rem);
            }


            .rules-content {
                max-height: 300px;
            }

            .stats-table th,
            .stats-table td {
                padding: 0.3rem;
                font-size: clamp(0.6rem, 2.5vw, 0.7rem);
            }
        }
