/* Premium Laser-Effect Disclaimer Styling */

.Disclaimer-Div {
    color: rgba(255, 102, 0, 0.9);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    font-family: 'Courier New', monospace;
    font-size: 21.3px;
    border-radius: 13px;
    border: 13px ridge rgba(255, 102, 0, 0.9);
    padding: 20px;
    width: 92%;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(255, 102, 0, 0.5),
        inset 0 0 30px rgba(255, 102, 0, 0.1),
        0 0 60px rgba(255, 102, 0, 0.3),
        inset 0 0 60px rgba(255, 102, 0, 0.05);
    animation: disclaimerGlow 3s ease-in-out infinite alternate;
}

/* Laser glow animation */
@keyframes disclaimerGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(255, 102, 0, 0.5),
            inset 0 0 30px rgba(255, 102, 0, 0.1),
            0 0 60px rgba(255, 102, 0, 0.3),
            inset 0 0 60px rgba(255, 102, 0, 0.05);
        border-color: rgba(255, 102, 0, 0.9);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 140, 0, 0.7),
            inset 0 0 40px rgba(255, 140, 0, 0.2),
            0 0 80px rgba(255, 140, 0, 0.4),
            inset 0 0 80px rgba(255, 140, 0, 0.1);
        border-color: rgba(255, 140, 0, 0.95);
    }
    100% {
        box-shadow: 
            0 0 50px rgba(255, 180, 0, 0.8),
            inset 0 0 50px rgba(255, 180, 0, 0.3),
            0 0 100px rgba(255, 180, 0, 0.5),
            inset 0 0 100px rgba(255, 180, 0, 0.15);
        border-color: rgba(255, 180, 0, 1);
    }
}

.Disclaimer-h1 {
    text-align: center;
    color: rgba(255, 102, 0, 0.9);
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 102, 0, 0.8),
        0 0 20px rgba(255, 102, 0, 0.6),
        0 0 30px rgba(255, 102, 0, 0.4),
        0 0 40px rgba(255, 102, 0, 0.2);
    animation: laserText 2s ease-in-out infinite alternate;
    margin-bottom: 30px;
}

/* Laser text animation */
@keyframes laserText {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 102, 0, 0.8),
            0 0 20px rgba(255, 102, 0, 0.6),
            0 0 30px rgba(255, 102, 0, 0.4),
            0 0 40px rgba(255, 102, 0, 0.2);
        color: rgba(255, 102, 0, 0.9);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 140, 0, 0.9),
            0 0 25px rgba(255, 140, 0, 0.7),
            0 0 35px rgba(255, 140, 0, 0.5),
            0 0 45px rgba(255, 140, 0, 0.3);
        color: rgba(255, 140, 0, 0.95);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(255, 180, 0, 1),
            0 0 30px rgba(255, 180, 0, 0.8),
            0 0 40px rgba(255, 180, 0, 0.6),
            0 0 50px rgba(255, 180, 0, 0.4);
        color: rgba(255, 180, 0, 1);
    }
}

.Disclaimer-hr {
    border: 2px dashed rgba(255, 102, 0, 0.9);
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 102, 0, 0.3) 20%, 
        rgba(255, 140, 0, 0.6) 50%, 
        rgba(255, 180, 0, 0.3) 80%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    animation: hrLaser 3s linear infinite;
}

@keyframes hrLaser {
    0% {
        background-position: -100% 0;
        box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    }
    100% {
        background-position: 100% 0;
        box-shadow: 0 0 20px rgba(255, 180, 0, 0.8);
    }
}

.Disclaimer-hr2 {
    border: 1px solid rgba(255, 102, 0, 0.6);
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 102, 0, 0.2) 25%, 
        rgba(255, 140, 0, 0.4) 50%, 
        rgba(255, 180, 0, 0.2) 75%, 
        transparent 100%);
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
    margin: 20px 0;
}

/* Premium laser span effects */
.Disclaimer-span {
    color: rgba(255, 102, 0, 0.9);
    font-weight: bold;
    text-shadow: 
        0 0 5px rgba(255, 102, 0, 0.8),
        0 0 10px rgba(255, 102, 0, 0.6),
        0 0 15px rgba(255, 102, 0, 0.4);
    animation: spanLaser 1.5s ease-in-out infinite alternate;
}

@keyframes spanLaser {
    0% {
        text-shadow: 
            0 0 5px rgba(255, 102, 0, 0.8),
            0 0 10px rgba(255, 102, 0, 0.6),
            0 0 15px rgba(255, 102, 0, 0.4);
        color: rgba(255, 102, 0, 0.9);
    }
    100% {
        text-shadow: 
            0 0 8px rgba(255, 140, 0, 0.9),
            0 0 12px rgba(255, 140, 0, 0.7),
            0 0 18px rgba(255, 140, 0, 0.5);
        color: rgba(255, 140, 0, 1);
    }
}

.Disclaimer-span-FUEL {
    color: rgba(255, 69, 0, 0.9);
    font-weight: bold;
    text-shadow: 
        0 0 8px rgba(255, 69, 0, 0.9),
        0 0 16px rgba(255, 69, 0, 0.7),
        0 0 24px rgba(255, 69, 0, 0.5);
    animation: fuelLaser 2s ease-in-out infinite alternate;
}

@keyframes fuelLaser {
    0% {
        text-shadow: 
            0 0 8px rgba(255, 69, 0, 0.9),
            0 0 16px rgba(255, 69, 0, 0.7),
            0 0 24px rgba(255, 69, 0, 0.5);
        color: rgba(255, 69, 0, 0.9);
    }
    100% {
        text-shadow: 
            0 0 12px rgba(255, 100, 0, 1),
            0 0 20px rgba(255, 100, 0, 0.8),
            0 0 28px rgba(255, 100, 0, 0.6);
        color: rgba(255, 100, 0, 1);
    }
}

.Disclaimer-span-GAS {
    color: rgba(0, 191, 255, 0.9);
    font-weight: bold;
    text-shadow: 
        0 0 8px rgba(0, 191, 255, 0.9),
        0 0 16px rgba(0, 191, 255, 0.7),
        0 0 24px rgba(0, 191, 255, 0.5);
    animation: gasLaser 2.2s ease-in-out infinite alternate;
}

@keyframes gasLaser {
    0% {
        text-shadow: 
            0 0 8px rgba(0, 191, 255, 0.9),
            0 0 16px rgba(0, 191, 255, 0.7),
            0 0 24px rgba(0, 191, 255, 0.5);
        color: rgba(0, 191, 255, 0.9);
    }
    100% {
        text-shadow: 
            0 0 12px rgba(0, 220, 255, 1),
            0 0 20px rgba(0, 220, 255, 0.8),
            0 0 28px rgba(0, 220, 255, 0.6);
        color: rgba(0, 220, 255, 1);
    }
}

.Disclaimer-span-McCC {
    color: rgba(255, 215, 0, 0.9);
    font-weight: bold;
    text-shadow: 
        0 0 8px rgba(255, 215, 0, 0.9),
        0 0 16px rgba(255, 215, 0, 0.7),
        0 0 24px rgba(255, 215, 0, 0.5);
    animation: mccLaser 1.8s ease-in-out infinite alternate;
}

@keyframes mccLaser {
    0% {
        text-shadow: 
            0 0 8px rgba(255, 215, 0, 0.9),
            0 0 16px rgba(255, 215, 0, 0.7),
            0 0 24px rgba(255, 215, 0, 0.5);
        color: rgba(255, 215, 0, 0.9);
    }
    100% {
        text-shadow: 
            0 0 12px rgba(255, 235, 0, 1),
            0 0 20px rgba(255, 235, 0, 0.8),
            0 0 28px rgba(255, 235, 0, 0.6);
        color: rgba(255, 235, 0, 1);
    }
}

.Disclaimer-span-GASL {
    color: rgba(0, 150, 255, 0.9);
    font-weight: bold;
    text-shadow: 
        0 0 8px rgba(0, 150, 255, 0.9),
        0 0 16px rgba(0, 150, 255, 0.7),
        0 0 24px rgba(0, 150, 255, 0.5);
    animation: gaslLaser 2.5s ease-in-out infinite alternate;
}

@keyframes gaslLaser {
    0% {
        text-shadow: 
            0 0 8px rgba(0, 150, 255, 0.9),
            0 0 16px rgba(0, 150, 255, 0.7),
            0 0 24px rgba(0, 150, 255, 0.5);
        color: rgba(0, 150, 255, 0.9);
    }
    100% {
        text-shadow: 
            0 0 12px rgba(0, 180, 255, 1),
            0 0 20px rgba(0, 180, 255, 0.8),
            0 0 28px rgba(0, 180, 255, 0.6);
        color: rgba(0, 180, 255, 1);
    }
}

.drl-Link {
    color: rgba(255, 102, 0, 0.9);
    text-decoration: none;
    font-weight: bold;
    text-shadow: 
        0 0 5px rgba(255, 102, 0, 0.8),
        0 0 10px rgba(255, 102, 0, 0.6),
        0 0 15px rgba(255, 102, 0, 0.4);
    animation: linkLaser 1.3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.drl-Link:hover {
    color: rgba(255, 180, 0, 1);
    text-shadow: 
        0 0 10px rgba(255, 180, 0, 1),
        0 0 20px rgba(255, 180, 0, 0.8),
        0 0 30px rgba(255, 180, 0, 0.6);
    transform: scale(1.05);
}

@keyframes linkLaser {
    0% {
        text-shadow: 
            0 0 5px rgba(255, 102, 0, 0.8),
            0 0 10px rgba(255, 102, 0, 0.6),
            0 0 15px rgba(255, 102, 0, 0.4);
        color: rgba(255, 102, 0, 0.9);
    }
    100% {
        text-shadow: 
            0 0 8px rgba(255, 140, 0, 0.9),
            0 0 12px rgba(255, 140, 0, 0.7),
            0 0 18px rgba(255, 140, 0, 0.5);
        color: rgba(255, 140, 0, 1);
    }
}

/* Additional premium effects */
.Disclaimer-Div::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 102, 0, 0.3), 
        rgba(255, 140, 0, 0.5), 
        rgba(255, 180, 0, 0.3), 
        rgba(255, 102, 0, 0.3));
    border-radius: 13px;
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% {
        background: linear-gradient(45deg, 
            rgba(255, 102, 0, 0.3), 
            rgba(255, 140, 0, 0.5), 
            rgba(255, 180, 0, 0.3), 
            rgba(255, 102, 0, 0.3));
    }
    50% {
        background: linear-gradient(225deg, 
            rgba(255, 180, 0, 0.3), 
            rgba(255, 102, 0, 0.5), 
            rgba(255, 140, 0, 0.3), 
            rgba(255, 180, 0, 0.3));
    }
    100% {
        background: linear-gradient(405deg, 
            rgba(255, 140, 0, 0.3), 
            rgba(255, 180, 0, 0.5), 
            rgba(255, 102, 0, 0.3), 
            rgba(255, 140, 0, 0.3));
    }
}
