:root {
    --primary: #0088ff;
    --primary-light: #e0e7ff;
    --text: #1f2937;
    --light-text: #6b7280;
    --bg-gradient: linear-gradient(135deg, #0088ff 0%, #c3cfe2 70%);
}

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

body {
    background: var(--bg-gradient);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.app-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.review-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.image-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.2rem;
    position: relative;
}

#person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.15;
    font-family: serif;
    pointer-events: none;
}

h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

#job {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: block;
    margin-top: 5px;
}

#info {
    color: var(--light-text);
    line-height: 1.7;
    margin-top: 1.2rem;
    min-height: 100px;
    font-size: 0.95rem;
}

.nav-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.btn {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text);
}

.btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.dots-container {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 22px;
    border-radius: 10px;
}

.shuffle-btn {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0.9rem;
    border-radius: 15px;
    border: none;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.shuffle-btn:hover {
    background: #4f46e5;
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
    .review-card {
        padding: 1.5rem;
    }
}