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

body {
	font-family: Arial, sans-serif;
	background-color: #000000;
	background-image: url('asset/BG.jpeg');
	background-size: cover;
}


.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #ac0000, #ff3a18);
    color: white;
    padding: 30px;
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.form-section {
    padding: 40px;
    border-bottom: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

input, textarea, select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #9c0000;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.rating-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rating-btn {
    flex: 1;
    min-width: 60px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-align: center;
}

.rating-btn:hover, .rating-btn.active {
    background: #000000;
    color: white;
    border-color: #960000;
    transform: translateY(-2px);
}

.btn {
    background: linear-gradient(135deg, #b30000, #c60000);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.reviews-section {
    padding: 40px;
}

.reviews-section h2 {
    margin-bottom: 30px;
    color: #333;
}

.review-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #870000;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(225, 255, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #000000;
}

.review-rating {
    background: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.recommend-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 600;
    margin-left: 10px;
}

.recommend-yes {
    background: #ff0022;
    color: white;
}

.recommend-no {
    background: #000000;
    color: white;
}

.review-comment {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-actions {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 8px;
    flex: 1;
}

.btn-edit {
    background: #feca57;
    color: #333;
}

.btn-delete {
    background: #ff6b6b;
    color: white;
}

.btn-edit:hover {
    background: #ffb703;
}

.btn-delete:hover {
    background: #ff4757;
}

.no-reviews {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        border-radius: 15px;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .form-section, .reviews-section {
        padding: 20px;
    }
    
    .rating-group {
        flex-direction: column;
    }
}