body {
    margin: 0;
    overflow-x: hidden;
    background-color: #0f172a;
    color: #e2e8f0;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-input {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.glass-input:focus {
    border-color: #F43F5E;
    outline: none;
    box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.2);
}

.review-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(244, 63, 94, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
}

.gradient-text {
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.switch-checkbox {
    display: none;
}

.switch-label {
    width: 50px;
    height: 26px;
    background-color: #334155;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    position: relative;
    transform: scale(1.5);
    cursor: pointer;
    transition: background-color 0.2s;
}

.switch-ball {
    width: 20px;
    height: 20px;
    background-color: white;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.switch-checkbox:checked+.switch-label .switch-ball {
    transform: translateX(24px);
}

.switch-checkbox:checked+.switch-label {
    background-color: #f43f5e;
}

.star-input input {
    display: none;
}

.star-input label {
    float: right;
    cursor: pointer;
    color: #475569;
    transition: color 0.2s;
}

.star-input label:before {
    content: '★';
    font-size: 1.5rem;
}

.star-input input:checked~label,
.star-input label:hover,
.star-input label:hover~label {
    color: #F43F5E;
}

.read-more-btn {
    color: #F43F5E;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 0.5rem;
}

.read-more-btn:hover {
    text-decoration: underline;
}