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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #c40c0c 0%, #ffc100 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.header {
    margin-bottom: 30px;
    color: white;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.header p {
    font-size: 1rem;
    opacity: 0.9;
}

.review-card {
    background: white;
    border-radius: 0;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-bottom: 25px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.review-card.show {
    opacity: 1;
    transform: scale(1);
}


.quote-icon {
    font-size: 4rem;
    color: #c40c0c;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.review-text.show {
    opacity: 1;
    transform: translateY(0);
}

.review-tag {
    display: inline-block;
    background: linear-gradient(135deg, #c40c0c 0%, #ffc100 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease;
}

.btn:active {
    transform: scale(0.95);
}

.btn.clicking {
    animation: buttonClick 0.3s ease;
}

@keyframes buttonClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.btn-copy {
    background: white;
    color: #c40c0c;
}

.btn-copy:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-generate {
    background: linear-gradient(135deg, #ffc100 0%, #c40c0c 100%);
    color: white;
}

.btn-generate:hover {
    box-shadow: 0 6px 20px rgba(196, 12, 12, 0.4);
}

.btn.copied {
    background: #4caf50;
    color: white;
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .review-card {
        padding: 30px 20px;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .buttons {
        flex-direction: column;
    }
}
