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

body {
    font-family: 'Arial Black', Arial, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;

    @media (max-width: 500px) {
        word-break: break-all;
    }
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    color: white;
    padding: 15px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #ffff00;
    text-decoration: underline;
}

.accept-btn {
    background: #000;
    color: #fff;
    border: 2px solid #ffff00;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.accept-btn:hover {
    background: #ffff00;
    color: #000;
}

/* Header */
.header {
    background: linear-gradient(90deg, #ff0000 0%, #000000 50%, #ff0000 100%);
    padding: 20px 0;
    border-bottom: 3px solid #ffff00;
}

.logo h1 {
    font-size: 2.5rem;
    color: #ffff00;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 3px;
}

.tagline {
    font-size: 1rem;
    color: #ffffff;
    font-style: italic;
}

/* Hero Section */
.hero {
    padding: 80px 15%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,0,0,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,0,0.2) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #330000 100%);
    display: flex;
    align-items: center;
    min-height: 70vh;
    position: relative;
    overflow: hidden;

    @media (max-width: 500px) {
        padding: 80px 15px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: speedLine 3s infinite;
}

@keyframes speedLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    color: #ff0000;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    font-size: 2rem;
    color: #ffff00;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.play-btn, .share-btn {
    padding: 15px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.play-btn {
    background: linear-gradient(45deg, #ff0000, #ff6600);
    color: white;
    box-shadow: 0 0 20px rgba(255,0,0,0.5);
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255,0,0,0.8);
}

.share-btn {
    background: linear-gradient(45deg, #ffff00, #ffaa00);
    color: #000;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255,255,0,0.8);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speedometer {
    width: 200px;
    height: 200px;
    border: 8px solid #ff0000;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle, #000 0%, #330000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.needle {
    width: 4px;
    height: 80px;
    background: #ffff00;
    position: absolute;
    top: 20px;
    border-radius: 2px;
}

.speed-text {
    color: #ffff00;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0000 0%, #000000 50%, #1a0000 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffff00;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, #330000 0%, #000000 100%);
    border: 2px solid #ff0000;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
    border-color: #ffff00;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.feature-card h3 {
    color: #ffff00;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff0000 0%, #000000 50%, #ff0000 100%);
}

.newsletter-desc {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid #ffff00;
    border-radius: 25px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.form-group input::placeholder {
    color: #999;
}

.submit-btn {
    padding: 15px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffff00, #ffaa00);
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255,255,0,0.5);
}

/* Rating Section */
.rating {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
}

.rating-desc {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.star {
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    filter: grayscale(100%);
}

.star:hover,
.star.active {
    color: #ffff00;
    filter: grayscale(0%);
    transform: scale(1.2);
    text-shadow: 0 0 10px #ffff00;
}

.rating-result {
    text-align: center;
    font-size: 1.2rem;
    color: #ffff00;
    font-weight: bold;
    min-height: 30px;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #000000 0%, #330000 50%, #000000 100%);
    padding: 50px 0 30px;
    border-top: 3px solid #ff0000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #ffff00;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffff00;
}

/* Success Message */
.success-message {
    background: linear-gradient(45deg, #00ff00, #008800);
    color: #000;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .speedometer {
        width: 150px;
        height: 150px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
