 /* =========================START BASIC AND HERO SECTIN =============================== --> */
 
 @keyframes float {
            0% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
            50% { transform: translateY(-20px) rotate(5deg); opacity: 1; }
            100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
        }
        
        @keyframes drift {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-100% - 100px)); }
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes scale {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .hero-section {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            position: relative;
            overflow: hidden;
        }
        
        .floating {
            animation: float 8s ease-in-out infinite;
        }
        
        .floating-1 {
            animation-delay: 0.5s;
        }
        
        .floating-2 {
            animation-delay: 1.5s;
        }
        
        .floating-3 {
            animation-delay: 2.5s;
        }
        
        .parallax-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background-size: contain;
            background-repeat: repeat-x;
            z-index: 0;
        }
        
        .layer-1 {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 Q30,20 50,50 T90,50" fill="none" stroke="rgba(74, 222, 128, 0.1)" stroke-width="2"/><circle cx="15" cy="35" r="2" fill="rgba(74, 222, 128, 0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(74, 222, 128, 0.1)"/><circle cx="75" cy="45" r="1.2" fill="rgba(74, 222, 128, 0.1)"/></svg>');
            animation: drift 120s linear infinite;
            opacity: 0.3;
        }
        
        .layer-2 {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,20 L30,40 L20,60 L40,70 L30,90" fill="none" stroke="rgba(16, 185, 129, 0.15)" stroke-width="1.5"/><rect x="60" y="30" width="8" height="8" fill="rgba(16, 185, 129, 0.15)" rx="1"/><circle cx="85" cy="65" r="3" fill="rgba(16, 185, 129, 0.15)"/></svg>');
            animation: drift 80s linear infinite;
            opacity: 0.4;
        }
        
        .layer-3 {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 70,40 50,70 30,40" fill="rgba(52, 211, 153, 0.2)"/><rect x="15" y="20" width="5" height="5" fill="rgba(52, 211, 153, 0.2)" rx="1"/><circle cx="80" cy="25" r="4" fill="rgba(52, 211, 153, 0.2)"/></svg>');
            animation: drift 40s linear infinite;
            opacity: 0.5;
        }
        
        .pulsing {
            animation: scale 2s ease-in-out infinite;
        }
        
        .rotating {
            animation: rotate 20s linear infinite;
        }
        
        .glowing-border {
            position: relative;
            overflow: hidden;
        }
        
        .glowing-border::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, rgba(16, 185, 129, 0.5), rgba(52, 211, 153, 0.5), rgba(132, 204, 22, 0.5), rgba(16, 185, 129, 0.5));
            background-size: 400% 400%;
            animation: gradient 3s ease infinite;
            z-index: -1;
            border-radius: 12px;
        }
        
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .content-container {
            position: relative;
            z-index: 10;
        }
        
        .bullet-hole {
            position: absolute;
            width: 15px;
            height: 15px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.7) 0%, rgba(239, 68, 68, 0) 70%);
            border-radius: 50%;
            z-index: 1;
        }




 @keyframes float {
            0% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
            50% { transform: translateY(-20px) rotate(5deg); opacity: 1; }
            100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
        }
        
        @keyframes drift {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-100% - 100px)); }
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes scale {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .section-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(74, 222, 128, 0.2);
        }
        
        .floating {
            animation: float 8s ease-in-out infinite;
        }
        
        .floating-1 {
            animation-delay: 0.5s;
        }
        
        .floating-2 {
            animation-delay: 1.5s;
        }
        
        .floating-3 {
            animation-delay: 2.5s;
        }
        
        .parallax-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background-size: contain;
            background-repeat: repeat-x;
            z-index: 0;
        }
        
        .layer-1 {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 Q30,20 50,50 T90,50" fill="none" stroke="rgba(74, 222, 128, 0.1)" stroke-width="2"/><circle cx="15" cy="35" r="2" fill="rgba(74, 222, 128, 0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(74, 222, 128, 0.1)"/><circle cx="75" cy="45" r="1.2" fill="rgba(74, 222, 128, 0.1)"/></svg>');
            animation: drift 120s linear infinite;
            opacity: 0.3;
        }
        
        .layer-2 {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,20 L30,40 L20,60 L40,70 L30,90" fill="none" stroke="rgba(16, 185, 129, 0.15)" stroke-width="1.5"/><rect x="60" y="30" width="8" height="8" fill="rgba(16, 185, 129, 0.15)" rx="1"/><circle cx="85" cy="65" r="3" fill="rgba(16, 185, 129, 0.15)"/></svg>');
            animation: drift 80s linear infinite;
            opacity: 0.4;
        }
        
        .pulsing {
            animation: scale 3s ease-in-out infinite;
        }
        
        .rotating {
            animation: rotate 20s linear infinite;
        }
        
        .glowing-border {
            position: relative;
            overflow: hidden;
        }
        
        .glowing-border::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, rgba(16, 185, 129, 0.5), rgba(52, 211, 153, 0.5), rgba(132, 204, 22, 0.5), rgba(16, 185, 129, 0.5));
            background-size: 400% 400%;
            animation: gradient 3s ease infinite;
            z-index: -1;
            border-radius: 12px;
        }
        
        .content-container {
            position: relative;
            z-index: 10;
        }
        
        .bullet-hole {
            position: absolute;
            width: 15px;
            height: 15px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.7) 0%, rgba(239, 68, 68, 0) 70%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .feature-card {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(74, 222, 128, 0.3);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(74, 222, 128, 0.2);
            border-color: rgba(74, 222, 128, 0.6);
        }
        
        .feature-icon {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border: 2px solid rgba(74, 222, 128, 0.5);
            box-shadow: 0 0 15px rgba(74, 222, 128, 0.3);
        }
        
        .map-border {
            position: relative;
            border: 3px solid transparent;
            border-radius: 10px;
            background-clip: padding-box;
        }
        
        .map-border::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, #10b981, #22d3ee, #a78bfa, #10b981);
            background-size: 300% 300%;
            border-radius: 12px;
            z-index: -1;
            animation: gradient 3s ease infinite;
        }
        
        .pulse-dot {
            animation: pulse 2s infinite;
        }



/* ==========================END BASIC AND HERO SECTIN =============================== --> */





 @keyframes float {
            0% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
            50% { transform: translateY(-20px) rotate(5deg); opacity: 1; }
            100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
        }
        
        @keyframes drift {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-100% - 100px)); }
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .section-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(74, 222, 128, 0.2);
        }
        
        .rules-bg {
            background: linear-gradient(135deg, #1f2c6b 0%, #000428 100%);
        }
        
        .floating {
            animation: float 8s ease-in-out infinite;
        }
        
        .parallax-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background-size: contain;
            background-repeat: repeat-x;
            z-index: 0;
        }
        
        .layer-1 {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 Q30,20 50,50 T90,50" fill="none" stroke="rgba(74, 222, 128, 0.1)" stroke-width="2"/><circle cx="15" cy="35" r="2" fill="rgba(74, 222, 128, 0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(74, 222, 128, 0.1)"/><circle cx="75" cy="45" r="1.2" fill="rgba(74, 222, 128, 0.1)"/></svg>');
            animation: drift 120s linear infinite;
            opacity: 0.3;
        }
        
        .layer-2 {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,20 L30,40 L20,60 L40,70 L30,90" fill="none" stroke="rgba(16, 185, 129, 0.15)" stroke-width="1.5"/><rect x="60" y="30" width="8" height="8" fill="rgba(16, 185, 129, 0.15)" rx="1"/><circle cx="85" cy="65" r="3" fill="rgba(16, 185, 129, 0.15)"/></svg>');
            animation: drift 80s linear infinite;
            opacity: 0.4;
        }
        
        .pulsing {
            animation: pulse 3s ease-in-out infinite;
        }
        
        .rotating {
            animation: rotate 20s linear infinite;
        }
        
        .glowing-border {
            position: relative;
            overflow: hidden;
        }
        
        .glowing-border::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, rgba(16, 185, 129, 0.5), rgba(52, 211, 153, 0.5), rgba(132, 204, 22, 0.5), rgba(16, 185, 129, 0.5));
            background-size: 400% 400%;
            animation: gradient 3s ease infinite;
            z-index: -1;
            border-radius: 12px;
        }
        
        .content-container {
            position: relative;
            z-index: 10;
        }
        
        .bullet-hole {
            position: absolute;
            width: 15px;
            height: 15px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.7) 0%, rgba(239, 68, 68, 0) 70%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .rule-card {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(74, 222, 128, 0.3);
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .rule-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(74, 222, 128, 0.2);
            border-color: rgba(74, 222, 128, 0.6);
        }
        
        .rule-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6f61, #ffd166, #06d6a0);
            z-index: 1;
        }
        
        .rule-number {
            position: absolute;
            top: -15px;
            right: 15px;
            background: #ff6f61;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 4px 8px rgba(255, 111, 97, 0.4);
        }
        
        .rule-icon {
            font-size: 28px;
            color: #ff6f61;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .pulse-dot {
            animation: pulse 2s infinite;
        }
        
        .rules-title {
            background: linear-gradient(90deg, #ff6f61, #ffd166, #06d6a0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }
        
        .rules-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6f61, #ffd166, #06d6a0);
            border-radius: 2px;
        }



/* ============================START FOOTER SECTION============================== */

.footer {
            width: 100%;
            /* max-width: 1200px; */
            background: rgba(15, 23, 42, 0.95);
            /* border-radius: 20px; */
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(74, 222, 128, 0.2);
            position: relative;
            z-index: 10;
            backdrop-filter: blur(10px);
        }
        
        .footer-top {
            padding: 50px 40px 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
        }
        
        .footer-column h3 {
            color: #4ade80;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #4ade80, #22d3ee);
            border-radius: 3px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
       
        
        .footer-logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, #4ade80, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-about p {
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .footer-links a i {
            color: #4ade80;
            margin-right: 10px;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #4ade80;
            transform: translateX(5px);
        }
        
        .footer-links a:hover i {
            transform: scale(1.2);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            display: flex;
            margin-bottom: 20px;
        }
        
        .contact-info i {
            color: #4ade80;
            font-size: 1.2rem;
            min-width: 30px;
            margin-top: 5px;
        }
        
        .contact-info div {
            color: #cbd5e1;
        }
        
        .contact-info div strong {
            color: #94a3b8;
            display: block;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(74, 222, 128, 0.1);
            color: #4ade80;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #4ade80;
            color: #0f172a;
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            padding: 25px 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        
        .copyright {
            display: flex;
            align-items: center;
        }
        
        .copyright i {
            color: #4ade80;
            margin-right: 8px;
        }
        
        .footer-nav {
            display: flex;
            gap: 20px;
        }
        
        .footer-nav a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-nav a:hover {
            color: #4ade80;
        }
        
        .back-to-top {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(74, 222, 128, 0.1);
            color: #4ade80;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .back-to-top:hover {
            background: #4ade80;
            color: #0f172a;
            transform: translateY(-5px);
        }
        
        .footer-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(74, 222, 128, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 80% 40%, rgba(34, 211, 238, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 30% 70%, rgba(74, 222, 128, 0.05) 0%, transparent 20%);
            z-index: -1;
            opacity: 0.7;
        }
        
        .footer-glow {
            position: absolute;
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 200px;
            background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
            z-index: -2;
        }
        
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }
        
        .animate-float-2 {
            animation: float 7s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        .animate-float-3 {
            animation: float 5s ease-in-out infinite;
            animation-delay: 2s;
        }
        
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr;
                padding: 40px 30px 20px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                padding: 20px 30px;
                text-align: center;
            }
            
            .footer-nav {
                order: -1;
                margin-bottom: 10px;
            }
        }



/* =========================END FOOTER SECTION =============================== */



/* ===============================START RULES SECTION ================================ */
.rules-section {
    background: linear-gradient(135deg, #1a202c 0%, #1e293b 100%);
}

.rule-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(74, 222, 128, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.rule-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 222, 128, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(74, 222, 128, 0.1);
}

.card-header {
    background: rgba(15, 23, 42, 0.7);
    padding: 20px;
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.rule-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.rule-card:hover .rule-icon {
    transform: scale(1.1);
    background: rgba(74, 222, 128, 0.25);
}

.rules-list {
    padding: 20px;
}

.rule-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(74, 222, 128, 0.1);
    transition: all 0.3s ease;
}

.rule-item:last-child {
    border-bottom: none;
}

.rule-item:hover {
    background: rgba(74, 222, 128, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin: 0 -10px;
}

.rule-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    color: white;
    font-size: 0.9rem;
}

.notice-box {
    background: rgba(153, 27, 27, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    background: rgba(248, 113, 113, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Parallax layers for rules section */
.rules-section .parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-size: contain;
    background-repeat: repeat-x;
    z-index: 0;
    opacity: 0.4;
}

.rules-section .layer-1 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 Q30,20 50,50 T90,50" fill="none" stroke="rgba(74, 222, 128, 0.1)" stroke-width="2"/><rect x="20" y="30" width="8" height="8" fill="rgba(74, 222, 128, 0.1)" rx="1"/><circle cx="70" cy="40" r="4" fill="rgba(74, 222, 128, 0.1)"/></svg>');
    animation: drift 100s linear infinite;
}

.rules-section .layer-2 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 70,40 50,70 30,40" fill="rgba(52, 211, 153, 0.2)"/><circle cx="20" cy="25" r="3" fill="rgba(52, 211, 153, 0.2)"/></svg>');
    animation: drift 60s linear infinite;
    top: 20%;
    height: 60%;
}

/* ==================================END RULES SECTION =============================== --> */



/* =================================START JOIN LIVE SECTION =============================== --> */
.join-live-bar {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 12px 20px;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(74, 222, 128, 0.2);
            border-bottom: 1px solid rgba(74, 222, 128, 0.2);
        }
        
        .live-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .live-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .live-title h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
        }
        
        .live-badge {
            background: #ff6f61;
            color: white;
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            animation: pulse 1.5s infinite;
        }
        
        .live-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            margin-right: 6px;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        
        .platform-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .platform-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-size: 0.95rem;
            border: 1px solid transparent;
        }
        
        .youtube-button {
            background: linear-gradient(45deg, #ff0000, #ff6b6b);
            color: white;
        }
        
        .facebook-button {
            background: linear-gradient(45deg, #1877f2, #00a2ff);
            color: white;
        }
        
        .telegram-button {
            background: linear-gradient(45deg, #0088cc, #00b3ff);
            color: white;
        }
        
        .platform-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: -1;
        }
        
        .platform-button:hover::before {
            transform: translateX(0);
        }
        
        .platform-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .platform-button i {
            font-size: 1.2rem;
        }
        
        /* Background elements */
        .bg-element {
            position: absolute;
            z-index: 0;
        }
        
        .bg-element-1 {
            top: 50%;
            left: 10%;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(74, 222, 128, 0.2);
            animation: float 8s ease-in-out infinite;
        }
        
        .bg-element-2 {
            bottom: 20%;
            right: 15%;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 111, 97, 0.2);
            animation: float 10s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-8px) rotate(5deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .live-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 10px;
            }
            
            .live-title {
                justify-content: center;
                width: 100%;
            }
            
            .platform-buttons {
                justify-content: center;
                width: 100%;
            }
            
            .platform-button {
                padding: 8px 15px;
            }
        }
        
        @media (max-width: 480px) {
            .platform-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }
            
            .platform-button {
                justify-content: center;
            }
        }
/* ================================END JOIN LIVE SECTION============================== --> */


