

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', 'Arial Bold', cursive;
    background: linear-gradient(135deg, #FF0000 0%, #FFFFFF 33%, #0000FF 66%, #FF0000 100%);
    background-attachment: fixed;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.patriotic-header {
    text-align: center;
    padding: 50px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.stars-and-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.3;
}

.flag-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        #FF0000 0px,
        #FF0000 20px,
        #FFFFFF 20px,
        #FFFFFF 40px,
        #0000FF 40px,
        #0000FF 60px
    );
}

.flag-stars {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: white;
    opacity: 0.8;
}

.flag-stars::before {
    content: "⭐⭐⭐⭐⭐⭐⭐⭐⭐";
}

.main-title {
    font-size: 4rem;
    color: #FFD700;
    text-shadow: 4px 4px 8px rgba(0,0,0,1);
    margin: 20px 0;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 4px 4px 8px rgba(0,0,0,1), 0 0 20px #FFD700; }
    to { text-shadow: 4px 4px 8px rgba(0,0,0,1), 0 0 30px #FFD700, 0 0 40px #FFD700; }
}

.eagle-container {
    margin-top: 20px;
}

.eagle {
    font-size: 5rem;
    animation: eagleFly 3s ease-in-out infinite;
}

@keyframes eagleFly {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}


.nav-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.nav-btn {
    background: linear-gradient(45deg, #FF0000, #0000FF);
    color: white;
    border: 3px solid #FFD700;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.nav-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #FFD700, #FFFFFF);
    color: #FF0000;
}

.nav-btn:active {
    transform: translateY(-2px);
}


.main-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-section h2 {
    font-size: 2.5rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0,0,0,1);
}


.freedom-content {
    text-align: center;
}

.freedom-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.freedom-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 20px;
}

.stat {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    border: 2px solid #FFD700;
}

.freedom-btn {
    background: linear-gradient(45deg, #FF0000, #0000FF);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.freedom-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}


.burger-content p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.burger-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.burger-item {
    background: rgba(139, 69, 19, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #FFD700;
    text-align: center;
}

.burger-item h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.burger-item p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.price {
    color: #90EE90;
    font-weight: bold;
    font-size: 1.2rem;
}


.guns-content p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.gun-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gun-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #FFD700;
    text-align: center;
}

.gun-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.gun-item h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gun-item p {
    font-size: 1rem;
}

.gun-quote {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #FFD700;
}


.capitalism-content p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.stock-ticker {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    font-family: 'Courier New', monospace;
    animation: ticker 10s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.crypto-section {
    text-align: center;
}

.crypto-section h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.crypto-coins {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.coin {
    background: linear-gradient(45deg, #FFD700, #FFFFFF);
    color: #FF0000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}


.pizza-content p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.pizza-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.pizza-item {
    background: rgba(255, 165, 0, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #FFD700;
    text-align: center;
}

.pizza-item h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.pizza-item p {
    font-size: 1rem;
}


.patriotic-footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-flags {
    margin-top: 20px;
    font-size: 2rem;
}


.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-eagle, .floating-flag, .floating-burger, .floating-gun {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
}

.floating-eagle {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-flag {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-burger {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.floating-gun {
    bottom: 10%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}


@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-btn {
        width: 200px;
    }

    .freedom-stats {
        flex-direction: column;
        align-items: center;
    }

    .burger-menu, .gun-gallery, .pizza-types {
        grid-template-columns: 1fr;
    }
}
