/* Amazing Red-Black Gradient Design */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #330000 50%, #1a0000 75%, #000000 100%) !important;
    background-attachment: fixed !important;
    color: #ffffff !important;
    min-height: 100vh !important;
    font-family: 'Roboto', sans-serif !important;
    overflow-x: hidden;
}

/* Animated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 0, 0.08) 0%, transparent 50%);
    animation: pulseBackground 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.content {
    background: transparent !important;
    min-height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: transparent !important;
    width: 100%;
    max-width: 500px;
}

.box {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(20, 0, 0, 0.8)) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 0, 0, 0.3) !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    box-shadow: 
        0 25px 50px rgba(255, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff4444, #ff0000) !important;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.inside {
    background: transparent !important;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Counter styling */
.counter {
    margin-bottom: 30px !important;
}

.counter span {
    display: block !important;
    font-size: 48px !important;
    font-weight: bold !important;
    color: #ff0000 !important;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5) !important;
    margin-bottom: 10px !important;
    animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.counter small {
    color: #cccccc !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Amazing button styling - darker gradient with black highlights */
.btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 50%, #2a0000 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(196, 30, 58, 0.6) !important;
    padding: 16px 40px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    font-family: 'Roboto', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 
        0 8px 25px rgba(196, 30, 58, 0.4),
        inset 0 1px 0 rgba(0, 0, 0, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.6) !important;
    margin: 25px 0 !important;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #dc143c 0%, #a52a2a 50%, #1a0000 100%) !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 
        0 12px 35px rgba(196, 30, 58, 0.5),
        0 0 25px rgba(196, 30, 58, 0.3),
        inset 0 1px 0 rgba(0, 0, 0, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.7) !important;
    border-color: rgba(220, 20, 60, 0.8) !important;
    color: #ffffff !important;
}

.btn:active {
    transform: translateY(-1px) scale(1.01) !important;
    box-shadow: 
        0 6px 15px rgba(196, 30, 58, 0.4),
        0 0 15px rgba(196, 30, 58, 0.2),
        inset 0 1px 0 rgba(0, 0, 0, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.8) !important;
    color: #ffffff !important;
}

/* Text styling */
.text {
    color: #bbbbbb !important;
    font-size: 14px !important;
    margin: 15px 0 !important;
    line-height: 1.6 !important;
}

.text a {
    color: #ff6666 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.text a:hover {
    color: #ff0000 !important;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3) !important;
}

/* Footer styling */
.footer {
    color: #888888 !important;
    font-size: 13px !important;
    text-align: center !important;
    margin-top: 30px !important;
    padding: 20px !important;
    border-top: 1px solid rgba(255, 0, 0, 0.1) !important;
}

.footer strong {
    color: #ff0000 !important;
}

/* Ads styling */
.ads {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 0, 0, 0.2) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin: 20px 0 !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .box {
        margin: 20px 10px !important;
        padding: 30px 20px !important;
    }
    
    .counter span {
        font-size: 36px !important;
    }
    
    .btn {
        padding: 14px 30px !important;
        font-size: 16px !important;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(255, 0, 0, 0.3);
    color: #ffffff;
}





/* Black and Blue Gradient Button */
.btntg {
    display: inline-block !important;
    background: linear-gradient(135deg, #000000 0%, #1e3c72 50%, #2a5298 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(46, 82, 152, 0.6) !important;
    padding: 16px 40px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    font-family: 'Roboto', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 
        0 8px 25px rgba(46, 82, 152, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.6) !important;
    margin: 25px 0 !important;
}

.btntg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btntg:hover::before {
    left: 100%;
}

.btntg:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a5298 50%, #4169e1 100%) !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 
        0 12px 35px rgba(46, 82, 152, 0.5),
        0 0 25px rgba(65, 105, 225, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.7) !important;
    border-color: rgba(65, 105, 225, 0.8) !important;
    color: #ffffff !important;
}

.btntg:active {
    transform: translateY(-1px) scale(1.01) !important;
    box-shadow: 
        0 6px 15px rgba(46, 82, 152, 0.4),
        0 0 15px rgba(65, 105, 225, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.8) !important;
    color: #ffffff !important;
}

/* Responsive design for btntg */
@media (max-width: 768px) {
    .btntg {
        padding: 14px 30px !important;
        font-size: 16px !important;
    }
}