/* 4th of July Theme - Patriotic Red, White, and Blue Celebration */

[data-theme="fourthofjuly"] {
    /* 4th of July Color Palette */
    --patriot-red: #dc143c;
    --liberty-blue: #002868;
    --freedom-white: #ffffff;
    --star-white: #f8f8ff;
    --firework-gold: #ffd700;
    --banner-blue: #0052cc;
    --flag-red: #b22234;
    --eagle-brown: #8b4513;

    /* Glass morphism backgrounds */
    --glass-bg: rgba(0, 40, 104, 0.1);
    --glass-border: rgba(0, 40, 104, 0.2);
    --glass-shadow: rgba(0, 40, 104, 0.3);

    /* Text colors */
    --text-primary: var(--star-white);
    --text-secondary: var(--firework-gold);
    --text-accent: var(--patriot-red);

    /* Background */
    background:
        radial-gradient(circle at 25% 20%, var(--patriot-red) 0%, transparent 40%),
        radial-gradient(circle at 75% 25%, var(--liberty-blue) 0%, transparent 45%),
        radial-gradient(circle at 20% 70%, var(--freedom-white) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, var(--firework-gold) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, var(--banner-blue) 0%, transparent 35%),
        linear-gradient(180deg, var(--liberty-blue) 0%, var(--patriot-red) 33%, var(--freedom-white) 50%, var(--patriot-red) 67%, var(--liberty-blue) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    position: relative;
    overflow-x: hidden;
}

/* Floating 4th of July Elements */
[data-theme="fourthofjuly"]::before {
    content: '🇺🇸 🎆 ⭐ 🎇 🗽 🦅 ✨ 🎉 🇺🇸 🎆 ⭐ 🎇 🗽 🦅 ✨ 🎉 🇺🇸 🎆 ⭐ 🎇 🗽 🦅 ✨ 🎉 🇺🇸 🎆 ⭐ 🎇 🗽 🦅 ✨ 🎉 🇺🇸 🎆 ⭐ 🎇 🗽 🦅 ✨ 🎉';
    position: fixed;
    top: -50px;
    left: -100px;
    right: -100px;
    bottom: -50px;
    font-size: 30px;
    line-height: 100px;
    letter-spacing: 50px;
    animation: randomFloat 15s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    white-space: nowrap;
    overflow: hidden;
}

[data-theme="fourthofjuly"]::after {
    content: '🇺🇸 🎆 ⭐ 🎇 🗽 🦅 ✨ 🎉 🇺🇸 🎆 ⭐ 🎇 🗽 🦅 ✨ 🎉 🇺🇸 🎆 ⭐ 🎇 🗽 🦅 ✨ 🎉 🇺🇸 🎆 ⭐ 🎇 🗽 🦅 ✨ 🎉 🇺🇸 🎆 ⭐ 🎇 🗽 🦅 ✨ 🎉';
    position: fixed;
    top: -50px;
    left: -100px;
    right: -100px;
    bottom: -50px;
    font-size: 25px;
    line-height: 120px;
    letter-spacing: 70px;
    animation: randomFloat 18s linear infinite reverse;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes randomFloat {
    0% { transform: translateX(-100px) translateY(0px) rotate(0deg); }
    10% { transform: translateX(-80px) translateY(-20px) rotate(36deg); }
    20% { transform: translateX(-40px) translateY(10px) rotate(72deg); }
    30% { transform: translateX(-20px) translateY(-30px) rotate(108deg); }
    40% { transform: translateX(20px) translateY(20px) rotate(144deg); }
    50% { transform: translateX(40px) translateY(-10px) rotate(180deg); }
    60% { transform: translateX(80px) translateY(30px) rotate(216deg); }
    70% { transform: translateX(60px) translateY(-20px) rotate(252deg); }
    80% { transform: translateX(100px) translateY(10px) rotate(288deg); }
    90% { transform: translateX(120px) translateY(-30px) rotate(324deg); }
    100% { transform: translateX(150px) translateY(0px) rotate(360deg); }
}

/* Modal Scrolling Fix */
[data-theme="fourthofjuly"] .modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

[data-theme="fourthofjuly"] .modal-dialog {
    position: relative !important;
    margin: 20px auto !important;
    max-width: 90% !important;
    width: auto !important;
}

[data-theme="fourthofjuly"] .modal-content {
    position: relative !important;
    background: rgba(0, 40, 104, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 2px solid var(--patriot-red) !important;
    border-radius: 20px !important;
    box-shadow:
        0 0 30px rgba(220, 20, 60, 0.5),
        inset 0 0 20px rgba(220, 20, 60, 0.1) !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    color: var(--text-primary) !important;
}

[data-theme="fourthofjuly"] .modal-header,
[data-theme="fourthofjuly"] .modal-body,
[data-theme="fourthofjuly"] .modal-footer {
    border: none !important;
    color: var(--text-primary) !important;
}

[data-theme="fourthofjuly"] .modal-title {
    color: var(--firework-gold) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important;
}

[data-theme="fourthofjuly"] .btn-close {
    background: var(--freedom-white) !important;
    opacity: 0.8 !important;
    border-radius: 50% !important;
}

/* Glass morphism containers */
[data-theme="fourthofjuly"] .container,
[data-theme="fourthofjuly"] .card,
[data-theme="fourthofjuly"] .player-card,
[data-theme="fourthofjuly"] .stats-container {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px var(--glass-shadow),
        inset 0 0 20px rgba(0, 40, 104, 0.05);
    position: relative;
    z-index: 10;
    color: var(--text-primary);
}

/* Headers and titles */
[data-theme="fourthofjuly"] h1,
[data-theme="fourthofjuly"] h2,
[data-theme="fourthofjuly"] h3,
[data-theme="fourthofjuly"] h4,
[data-theme="fourthofjuly"] h5,
[data-theme="fourthofjuly"] h6 {
    color: var(--firework-gold);
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 1rem;
}

/* Text elements */
[data-theme="fourthofjuly"] p,
[data-theme="fourthofjuly"] span,
[data-theme="fourthofjuly"] div {
    color: var(--text-primary);
}

[data-theme="fourthofjuly"] .text-muted {
    color: var(--text-secondary) !important;
}

/* Buttons */
[data-theme="fourthofjuly"] .btn-primary {
    background: linear-gradient(135deg, var(--patriot-red), var(--liberty-blue));
    border: 2px solid var(--patriot-red);
    color: var(--freedom-white);
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(220, 20, 60, 0.3),
        0 0 20px rgba(220, 20, 60, 0.2);
}

[data-theme="fourthofjuly"] .btn-primary:hover {
    background: linear-gradient(135deg, var(--firework-gold), var(--freedom-white));
    border-color: var(--firework-gold);
    color: var(--liberty-blue);
    box-shadow:
        0 6px 20px rgba(255, 215, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

[data-theme="fourthofjuly"] .btn-secondary {
    background: linear-gradient(135deg, var(--liberty-blue), var(--banner-blue));
    border: 2px solid var(--liberty-blue);
    color: var(--freedom-white);
    font-weight: bold;
}

[data-theme="fourthofjuly"] .btn-success {
    background: linear-gradient(135deg, var(--firework-gold), var(--freedom-white));
    border: 2px solid var(--firework-gold);
    color: var(--liberty-blue);
}

[data-theme="fourthofjuly"] .btn-danger {
    background: linear-gradient(135deg, var(--flag-red), var(--patriot-red));
    border: 2px solid var(--flag-red);
    color: var(--freedom-white);
}

/* Forms */
[data-theme="fourthofjuly"] .form-control,
[data-theme="fourthofjuly"] .form-select {
    background: rgba(0, 40, 104, 0.8);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="fourthofjuly"] .form-control:focus,
[data-theme="fourthofjuly"] .form-select:focus {
    background: rgba(0, 40, 104, 0.9);
    border-color: var(--firework-gold);
    box-shadow:
        0 0 0 0.25rem rgba(255, 215, 0, 0.25),
        0 0 20px rgba(255, 215, 0, 0.3);
    color: var(--text-primary);
}

[data-theme="fourthofjuly"] .form-label {
    color: var(--firework-gold);
    font-weight: 600;
}

/* Progress bars */
[data-theme="fourthofjuly"] .progress {
    background: rgba(0, 40, 104, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

[data-theme="fourthofjuly"] .progress-bar {
    background: linear-gradient(90deg,
        var(--patriot-red) 0%,
        var(--freedom-white) 25%,
        var(--liberty-blue) 50%,
        var(--firework-gold) 75%,
        var(--patriot-red) 100%);
    box-shadow:
        0 0 10px rgba(220, 20, 60, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

/* Alerts */
[data-theme="fourthofjuly"] .alert {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--text-primary);
}

[data-theme="fourthofjuly"] .alert-success {
    border-color: var(--firework-gold);
    background: rgba(255, 215, 0, 0.2);
    color: var(--liberty-blue);
}

[data-theme="fourthofjuly"] .alert-warning {
    border-color: var(--patriot-red);
    background: rgba(220, 20, 60, 0.2);
    color: var(--freedom-white);
}

[data-theme="fourthofjuly"] .alert-danger {
    border-color: var(--flag-red);
    background: rgba(178, 34, 52, 0.2);
}

/* Navigation */
[data-theme="fourthofjuly"] .navbar {
    background: rgba(0, 40, 104, 0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--patriot-red);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

[data-theme="fourthofjuly"] .navbar-brand,
[data-theme="fourthofjuly"] .nav-link {
    color: var(--firework-gold) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

[data-theme="fourthofjuly"] .nav-link:hover {
    color: var(--freedom-white) !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Tables */
[data-theme="fourthofjuly"] .table {
    color: var(--text-primary);
    background: transparent;
}

[data-theme="fourthofjuly"] .table thead th {
    border-bottom: 2px solid var(--patriot-red);
    color: var(--firework-gold);
    background: rgba(220, 20, 60, 0.1);
}

[data-theme="fourthofjuly"] .table tbody tr:hover {
    background: rgba(0, 40, 104, 0.1);
}

[data-theme="fourthofjuly"] .table td,
[data-theme="fourthofjuly"] .table th {
    border-color: var(--glass-border);
}

/* Cards and panels */
[data-theme="fourthofjuly"] .card-header {
    background: rgba(0, 40, 104, 0.1);
    border-bottom: 2px solid var(--patriot-red);
    color: var(--firework-gold);
    font-weight: bold;
}

[data-theme="fourthofjuly"] .card-body {
    color: var(--text-primary);
}

/* List groups */
[data-theme="fourthofjuly"] .list-group-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="fourthofjuly"] .list-group-item:hover {
    background: rgba(0, 40, 104, 0.1);
    border-color: var(--patriot-red);
}

[data-theme="fourthofjuly"] .list-group-item.active {
    background: linear-gradient(135deg, var(--patriot-red), var(--liberty-blue));
    border-color: var(--patriot-red);
    color: var(--freedom-white);
}

/* Badges */
[data-theme="fourthofjuly"] .badge {
    background: linear-gradient(135deg, var(--patriot-red), var(--liberty-blue));
    color: var(--freedom-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--firework-gold);
}

/* Links */
[data-theme="fourthofjuly"] a {
    color: var(--firework-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="fourthofjuly"] a:hover {
    color: var(--freedom-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Dropdown menus */
[data-theme="fourthofjuly"] .dropdown-menu {
    background: rgba(0, 40, 104, 0.95);
    border: 2px solid var(--patriot-red);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(220, 20, 60, 0.3);
}

[data-theme="fourthofjuly"] .dropdown-item {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

[data-theme="fourthofjuly"] .dropdown-item:hover {
    background: rgba(220, 20, 60, 0.2);
    color: var(--firework-gold);
}

/* Pagination */
[data-theme="fourthofjuly"] .page-link {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--patriot-red);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="fourthofjuly"] .page-link:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--patriot-red);
    color: var(--firework-gold);
}

[data-theme="fourthofjuly"] .page-item.active .page-link {
    background: linear-gradient(135deg, var(--patriot-red), var(--liberty-blue));
    border-color: var(--patriot-red);
    color: var(--freedom-white);
}

/* Tooltips */
[data-theme="fourthofjuly"] .tooltip-inner {
    background: rgba(0, 40, 104, 0.95);
    color: var(--text-primary);
    border: 1px solid var(--patriot-red);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Popovers */
[data-theme="fourthofjuly"] .popover {
    background: rgba(0, 40, 104, 0.95);
    border: 2px solid var(--patriot-red);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

[data-theme="fourthofjuly"] .popover-header {
    background: rgba(220, 20, 60, 0.1);
    border-bottom: 1px solid var(--patriot-red);
    color: var(--firework-gold);
}

[data-theme="fourthofjuly"] .popover-body {
    color: var(--text-primary);
}

/* Special patriotic effects */
[data-theme="fourthofjuly"] .liberty-bell {
    background: linear-gradient(135deg, var(--patriot-red), var(--freedom-white), var(--liberty-blue));
    color: var(--liberty-blue);
    border: 3px solid var(--firework-gold);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow:
        0 0 30px rgba(220, 20, 60, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: patrioticPulse 4s ease-in-out infinite;
}

@keyframes patrioticPulse {
    0% {
        box-shadow:
            0 0 30px rgba(220, 20, 60, 0.5),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    33% {
        box-shadow:
            0 0 40px rgba(255, 255, 255, 0.7),
            inset 0 0 30px rgba(255, 255, 255, 0.5);
        transform: scale(1.02);
    }
    66% {
        box-shadow:
            0 0 40px rgba(0, 40, 104, 0.7),
            inset 0 0 30px rgba(0, 40, 104, 0.5);
        transform: scale(1.02);
    }
    100% {
        box-shadow:
            0 0 30px rgba(220, 20, 60, 0.5),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
}

/* Firework burst effect */
[data-theme="fourthofjuly"] .firework-burst {
    position: relative;
    overflow: hidden;
}

[data-theme="fourthofjuly"] .firework-burst::before {
    content: '🎆✨🎇';
    position: absolute;
    top: -15px;
    right: 15px;
    font-size: 1.5rem;
    animation: fireworkBurst 8s ease-in-out infinite;
    z-index: 5;
}

@keyframes fireworkBurst {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.3) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(0.8) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: scale(1.2) rotate(270deg);
        opacity: 0.9;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

/* Flag wave decoration */
[data-theme="fourthofjuly"] .flag-wave::after {
    content: '🇺🇸';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    animation: flagWave 3s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotate(5deg) scale(1.1);
        opacity: 0.9;
    }
    50% {
        transform: rotate(-5deg) scale(1.05);
        opacity: 0.8;
    }
    75% {
        transform: rotate(3deg) scale(1.1);
        opacity: 0.9;
    }
}

/* Stars and stripes pattern overlay */
[data-theme="fourthofjuly"] .stars-stripes {
    position: relative;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 10px,
            rgba(220, 20, 60, 0.1) 10px,
            rgba(220, 20, 60, 0.1) 15px
        ),
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.2) 2px, transparent 2px);
    background-size: 100% 100%, 40px 40px;
}

/* Responsive design */
@media (max-width: 768px) {
    [data-theme="fourthofjuly"]::before,
    [data-theme="fourthofjuly"]::after {
        font-size: 20px;
        line-height: 80px;
        letter-spacing: 30px;
    }

    [data-theme="fourthofjuly"] .modal-dialog {
        margin: 10px !important;
        max-width: 95% !important;
    }

    [data-theme="fourthofjuly"] .liberty-bell {
        font-size: 1.5rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    [data-theme="fourthofjuly"]::before,
    [data-theme="fourthofjuly"]::after {
        font-size: 16px;
        line-height: 60px;
        letter-spacing: 20px;
    }

    [data-theme="fourthofjuly"] .liberty-bell {
        font-size: 1.2rem;
        padding: 10px;
    }
}

/* MASSIVE 4th of July Floating Emojis - 20x More! */
[data-theme="fourthofjuly"] body::before {
    content: '🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉 🇺🇸 🎆 🎇 ⭐ 🗽 🦅 🎊 🎉';
    position: fixed;
    top: -50px;
    left: 0;
    width: 200%;
    height: 120%;
    font-size: 1.5rem;
    line-height: 3rem;
    letter-spacing: 2rem;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    animation: fourthofjulyFloatMega 32s linear infinite;
    word-wrap: break-word;
    overflow: hidden;
}

[data-theme="fourthofjuly"] body::after {
    content: '🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤 🗳️ 🏛️ 📜 ⚖️ 🔔 🎺 🥁 🍔 🌭 🥤';
    position: fixed;
    top: -50px;
    left: 0;
    width: 200%;
    height: 120%;
    font-size: 1.2rem;
    line-height: 2.5rem;
    letter-spacing: 1.5rem;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
    animation: fourthofjulyFloatMega 42s linear infinite reverse;
    word-wrap: break-word;
    overflow: hidden;
}

@keyframes fourthofjulyFloatMega {
    0% { transform: translateX(-100%) translateY(0px) rotate(0deg); }
    100% { transform: translateX(100%) translateY(-100px) rotate(360deg); }
}