* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bangers', 'Impact', 'Arial Black', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #0a0a0a;
    overflow-x: hidden;
}

body[dir="rtl"] {
    direction: rtl;
}

/* Animated scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff0080, #ff8000, #ffff00, #80ff00, #00ff80, #00ffff, #0080ff, #8000ff);
    border-radius: 6px;
    animation: scrollbar-rainbow 3s linear infinite;
}

@keyframes scrollbar-rainbow {
    0% { background: linear-gradient(to bottom, #ff0080, #ff8000, #ffff00, #80ff00); }
    25% { background: linear-gradient(to bottom, #ff8000, #ffff00, #80ff00, #00ff80); }
    50% { background: linear-gradient(to bottom, #ffff00, #80ff00, #00ff80, #00ffff); }
    75% { background: linear-gradient(to bottom, #80ff00, #00ff80, #00ffff, #0080ff); }
    100% { background: linear-gradient(to bottom, #00ff80, #00ffff, #0080ff, #8000ff); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px #000, 6px 6px 10px rgba(0,0,0,0.5);
}

/* Animated gradient backgrounds */
.animated-gradient {
    background: linear-gradient(-45deg, #ff0080, #ff8000, #ffff00, #80ff00, #00ff80, #00ffff, #0080ff, #8000ff);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Paintball card style */
.paintball-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.3);
    border: 3px solid transparent;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.paintball-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff0080, #ff8000, #ffff00, #80ff00, #00ff80, #00ffff, #0080ff, #8000ff);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    animation: border-glow 3s linear infinite;
    transition: opacity 0.4s;
}

.paintball-card:hover::before {
    opacity: 1;
}

.paintball-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.5);
}

@keyframes border-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Icon container with animation */
.paintball-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0080, #ff8000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.5);
    animation: icon-bounce 2s ease-in-out infinite;
    border: 3px solid #ffffff;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Action button */
.btn-action {
    background: linear-gradient(135deg, #ff0080 0%, #ff8000 50%, #ffff00 100%);
    color: #000000;
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: button-pulse 2s ease-in-out infinite;
}

@keyframes button-pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(255, 0, 128, 0.5); }
    50% { box-shadow: 0 8px 40px rgba(255, 0, 128, 0.8), 0 0 20px rgba(255, 0, 128, 0.5); }
}

.btn-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-action:hover::before {
    left: 100%;
}

.btn-action:hover {
    transform: translateY(-3px) scale(1.05);
    animation: none;
    box-shadow: 0 12px 50px rgba(255, 0, 128, 0.7);
}

.btn-action:active {
    transform: translateY(-1px) scale(1.02);
}

/* Section backgrounds */
.section-dark {
    background: #0a0a0a;
}

.section-gradient {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

/* Badge design */
.action-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff0080, #ff8000);
    color: #ffffff;
    border-radius: 25px;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 0, 128, 0.7), 0 0 15px rgba(255, 0, 128, 0.5); }
}

/* Input styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea,
select {
    width: 100%;
    border: 3px solid #333;
    border-radius: 15px;
    padding: 14px 18px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #ffffff;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #ff0080;
    box-shadow: 0 0 0 4px rgba(255, 0, 128, 0.2), 0 0 20px rgba(255, 0, 128, 0.3);
    background: #222;
}

/* Time slot buttons */
.time-slot {
    display: inline-block;
    padding: 12px 24px;
    margin: 8px;
    background: linear-gradient(135deg, #1a1a1a, #2d1b3d);
    color: #ffffff;
    border: 2px solid #ff0080;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: linear-gradient(135deg, #ff0080, #ff8000);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.5);
}

.time-slot.selected {
    background: linear-gradient(135deg, #ff0080, #ff8000);
    border-color: #ffff00;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.8);
    animation: slot-pulse 1s ease-in-out infinite;
}

@keyframes slot-pulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
}

/* Floating particles animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .paintball-card {
        padding: 1.5rem;
    }
}

/* Header unique design */
.header-special {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, #ff0080, #ff8000, #ffff00, #80ff00, #00ff80, #00ffff, #0080ff, #8000ff) 1;
    position: relative;
    overflow: hidden;
}

.header-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.1), transparent);
    animation: header-scan 3s linear infinite;
}

@keyframes header-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Footer unique design */
.footer-special {
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #ff0080, #ff8000, #ffff00, #80ff00, #00ff80, #00ffff, #0080ff, #8000ff) 1;
    position: relative;
}

/* Paint splatter effect */
.paint-splatter {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.3;
    pointer-events: none;
    animation: splatter-float 4s ease-in-out infinite;
}

@keyframes splatter-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-20px, -40px) rotate(180deg); }
    75% { transform: translate(-40px, -20px) rotate(270deg); }
}

