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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://www.pngkey.com/png/detail/3-30464_open-png.png') repeat;
    background-size: 300px auto;
    background-attachment: fixed;
    min-height: 100vh;
    color: #e0e0e0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.rainbow {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 70px;
    height: 30px;
    background: linear-gradient(90deg, 
        #ff0000 0%, 
        #ff8c00 14.28%, 
        #ffd700 28.56%, 
        #32cd32 42.84%, 
        #00bfff 57.12%, 
        #4169e1 71.4%, 
        #9400d3 85.68%, 
        #ff0000 100%);
    transform: rotate(-45deg);
    transform-origin: center;
    opacity: 0.9;
    box-shadow: 0 3px 15px rgba(255, 255, 255, 0.4);
    animation: rainbowGlow 3s ease-in-out infinite alternate;
    z-index: 10;
}

.hero-image {
    max-width: 300px;
    max-height: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    object-fit: cover;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stats-section {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
}

.counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.counter-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ccc;
}

.author-info {
    margin-top: 2rem;
    text-align: left;
}

.author-info h3 {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: justify;
}

.info-section {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
}

.info-section h3 {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(40, 40, 40, 0.7);
    border-radius: 8px;
    border: 1px solid #444;
}

.price-label {
    color: #ddd;
    font-size: 1rem;
}

.price-value {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.2rem;
}

.info-note {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

.quotes-section {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.quote-container {
    position: relative;
    width: 100%;
    text-align: center;
}

.quote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

.quote.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #ff6b6b;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.quote-author {
    font-size: 1rem;
    color: #ccc;
    font-weight: 600;
    letter-spacing: 1px;
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.form-section {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-weight: 600;
    color: #ccc;
    font-size: 1.1rem;
}

textarea, input {
    padding: 1rem;
    border: 2px solid #444;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: #e0e0e0;
}

textarea:focus, input:focus {
    outline: none;
    border-color: #ff6b6b;
    background: #333;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.contact-info {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #ddd;
    font-size: 1.5rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #ccc;
}

.success-message {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    animation: slideIn 0.5s ease;
}

.hidden {
    display: none;
}

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

@keyframes rainbowGlow {
    from {
        box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    to {
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .hero-image {
        max-width: 250px;
    }
    
    .rainbow {
        width: 150px;
        height: 30px;
    }
    
    .counter {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .counter-value {
        font-size: 2rem;
    }
} 