@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;400;600;700&family=Fredoka:wght@400;600;700&display=swap');

:root {
    /* Seamless Logo-Based Palette */
    --logo-cream: #FDFBF7;
    /* Background */
    --logo-brown: #644D3A;
    /* Dark Accent / Text */
    --logo-clay: #C48B69;
    /* Primary Action / Warm Glow */

    /* Branding Unified */
    --primary: var(--logo-clay);
    --primary-dark: #A67455;
    --secondary: var(--logo-brown);
    --accent: var(--logo-clay);

    --bg-base: var(--logo-cream);
    --text-dark: var(--logo-brown);
    --text-light: #8B7E74;
    --white: #ffffff;

    --shadow-tactile: rgba(100, 77, 58, 0.15);
    --border-radius-plump: 28px;
    --border-radius-sm: 18px;
    --transition-bouncy: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Fraunces', serif;
    background-color: var(--bg-base);
    background-image:
        radial-gradient(var(--logo-clay) 0.5px, transparent 0.5px),
        radial-gradient(var(--logo-clay) 0.5px, var(--logo-cream) 0.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

/* Unified Header & Navbar */
.navbar {
    background: transparent;
    padding: 3rem 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border: none;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo-img {
    height: 200px !important;
    /* Extra Large Logo */
    width: auto;
    filter: drop-shadow(0 15px 30px var(--shadow-tactile));
}

.subtitle-main {
    font-family: 'Fredoka', sans-serif;
    color: var(--logo-brown);
    margin: 0;
    font-size: 1.25rem;
    opacity: 0.8;
    text-align: center;
    max-width: 500px;
    line-height: 1.4;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out;
}

/* Settings Container */
.settings-container {
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out 0.1s backwards;
}

.settings-toggle {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-sm);
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px var(--shadow);
}

.settings-toggle:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-lg);
}

.settings-icon {
    font-size: 1.25rem;
}

.settings-panel {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 1rem;
    box-shadow: 0 10px 40px var(--shadow);
    animation: slideInDown 0.3s ease-out;
}

.settings-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.save-settings-btn {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.save-settings-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: var(--mushroom-taupe);
    margin-bottom: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.logo-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 6px var(--shadow-tactile));
}

.logo h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-family: 'Fraunces', serif;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Form Container */
.form-container {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Form Container & Scalloped Edge */
.form-card {
    background: var(--white);
    border-radius: var(--border-radius-plump);
    padding: 2.5rem;
    box-shadow: 0 20px 60px var(--shadow-tactile);
    position: relative;
    border: 8px solid var(--white);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

/* Tactile 3D Buttons */
.option-btn,
.character-btn,
.create-btn,
.btn-primary {
    font-family: 'Fredoka', sans-serif !important;
    text-transform: capitalize;
    box-shadow:
        0 6px 0 var(--primary-dark),
        0 12px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: var(--transition-bouncy);
    border: none;
    border-radius: var(--border-radius-plump);
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: var(--primary);
    color: var(--white);
}

.option-btn:hover,
.character-btn:hover,
.create-btn:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 var(--primary-dark),
        0 15px 25px rgba(0, 0, 0, 0.12);
}

.option-btn:active,
.character-btn:active,
.create-btn:active,
.btn-primary:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 var(--primary-dark),
        0 5px 10px rgba(0, 0, 0, 0.1);
}

.option-btn.active,
.character-btn.selected {
    background: var(--secondary);
    box-shadow:
        0 6px 0 #7a8a7c,
        0 12px 20px rgba(0, 0, 0, 0.1);
    color: var(--white);
}

.option-btn.active:hover,
.character-btn.selected:hover {
    box-shadow:
        0 8px 0 #7a8a7c,
        0 15px 25px rgba(0, 0, 0, 0.12);
}

.option-btn.active:active,
.character-btn.selected:active {
    box-shadow:
        0 2px 0 #7a8a7c,
        0 5px 10px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-family: 'Fredoka', sans-serif;
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--mushroom-taupe);
}

/* Button Groups */
.button-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

/* The original .option-btn and .option-btn:hover rules are replaced by the new tactile 3D button styles */

.option-icon {
    font-size: 1.25rem;
}

/* Text Input */
.text-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.text-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.text-input::placeholder {
    color: #CBD5E0;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.select-all-btn {
    background: var(--white);
    border: 2px dashed var(--primary);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.select-all-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-style: solid;
}

/* Character Grid */
.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 1.25rem;
}

/* Unified Selectable Buttons (Language & Characters) */
.selectable-btn {
    font-family: 'Fredoka', sans-serif !important;
    text-transform: capitalize;
    background: var(--white);
    color: var(--text-dark);
    border: none;
    border-radius: var(--border-radius-plump);
    padding: 1rem 1.5rem;
    cursor: pointer;
    box-shadow:
        0 4px 0 rgba(0, 0, 0, 0.05),
        0 8px 15px var(--shadow-tactile);
    transition: var(--transition-bouncy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.selectable-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 rgba(0, 0, 0, 0.05),
        0 10px 20px var(--shadow-tactile);
}

.selectable-btn:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.05),
        0 4px 8px var(--shadow-tactile);
}

.selectable-btn.active,
.selectable-btn.selected {
    background: var(--logo-clay);
    color: var(--white);
    box-shadow:
        0 6px 0 var(--primary-dark),
        0 12px 20px rgba(0, 0, 0, 0.15);
}

.selectable-btn.active:hover,
.selectable-btn.selected:hover {
    box-shadow:
        0 8px 0 var(--primary-dark),
        0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Bobbing Music Note Animation */
.bob-music {
    display: inline-block;
    animation: bobUpDown 2.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px var(--shadow-tactile));
}

@keyframes bobUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scalloped Edge Effect */

.form-card::before,
.library-container::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background-image: radial-gradient(circle at 10px -5px, transparent 12px, var(--white) 13px);
    background-size: 20px 20px;
    z-index: 1;
}

/* Hand-drawn Doodle Background Pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10 Q 15 5, 20 10 T 30 10 M70 80 Q 75 75, 80 80 T 90 80 M40 20 L 45 15 L 50 20 M80 30 C 85 25, 95 25, 90 35 S 75 45, 80 30' stroke='%23a6968a' fill='transparent' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Navbar Sophistication */
.navbar {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    margin: 1rem -1rem;
    padding: 1rem 2rem !important;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: var(--mushroom-taupe);
}

/* Occasion Grid Simple */
.occasion-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

/* Occasion Grid */
.occasion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.occasion-btn {
    background: var(--white);
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.occasion-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.occasion-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

.occasion-icon {
    font-size: 1.75rem;
}

.occasion-name {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Dropdown */
.more-occasions {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
    background: var(--white);
    border: 2px dashed #E2E8F0;
    border-radius: var(--border-radius-sm);
    padding: 0.875rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dropdown-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.dropdown-arrow {
    transition: var(--transition);
}

.dropdown-toggle.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px var(--shadow);
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    padding: 0.5rem;
}

.dropdown-content .occasion-btn {
    width: 100%;
    margin-bottom: 0.5rem;
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
}

.dropdown-content .occasion-btn:last-child {
    margin-bottom: 0;
}

/* Create Button */
.create-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 1.25rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    box-shadow: 0 6px 20px var(--shadow-lg);
}

.create-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-lg);
}

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

.btn-icon {
    font-size: 1.5rem;
}

/* Loading State */
.loading-container {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

/* Music Loader Animation */
.music-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
}

.bar {
    width: 6px;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 4px;
    animation: dance 1s ease-in-out infinite;
}

.bar:nth-child(1) {
    height: 20px;
    animation-delay: 0.1s;
}

.bar:nth-child(2) {
    height: 40px;
    animation-delay: 0.2s;
}

.bar:nth-child(3) {
    height: 50px;
    animation-delay: 0.3s;
}

.bar:nth-child(4) {
    height: 30px;
    animation-delay: 0.4s;
}

.bar:nth-child(5) {
    height: 20px;
    animation-delay: 0.5s;
}

@keyframes dance {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.5);
    }
}

/* Floating Notes */
.musical-notes {
    position: absolute;
    top: -20px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.note {
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0;
    animation: floatNote 2s ease-out infinite;
}

.note:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.note:nth-child(2) {
    left: 50%;
    animation-delay: 0.5s;
}

.note:nth-child(3) {
    left: 80%;
    animation-delay: 1s;
}

@keyframes floatNote {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-40px) rotate(20deg);
        opacity: 0;
    }
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.loading-subtext {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.progress-stages {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.progress-stage {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.progress-stage.active {
    color: var(--primary);
    font-weight: 600;
}

.progress-stage.completed {
    color: #4CAF50;
}

.stage-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.progress-stage.completed .stage-icon {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    transition: width 0.5s ease-out;
    width: 0%;
}

.progress-percentage {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Song Library */
.library-container {
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.library-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.library-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* About Us Section */
.about-section {
    margin-top: 6rem;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.about-header {
    font-family: 'Fraunces', serif;
    font-size: 2.25rem;
    color: var(--logo-brown);
    margin-bottom: 2rem;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-quote {
    font-style: italic;
    font-weight: 600;
    color: var(--logo-clay);
    margin-top: 2rem;
}

.library-icon {
    font-size: 2rem;
}

.export-csv-btn {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.export-csv-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.library-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px var(--shadow);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.empty-subtext {
    color: var(--text-light);
}

.song-list {
    display: grid;
    gap: 1rem;
}

.song-card {
    background: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    box-shadow: 0 4px 16px var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    animation: slideInUp 0.4s ease-out;
}

.song-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-lg);
}

.song-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.song-info {
    flex: 1;
}

.song-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.song-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.song-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.song-tag {
    font-family: 'Fredoka', sans-serif;
    background: var(--cloud-dancer);
    color: var(--mushroom-taupe);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.song-play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.song-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px var(--shadow-lg);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    animation: scaleIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: #F7FAFC;
    color: var(--text-dark);
}

.player-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.player-modal-body {
    padding: 3rem 2rem 2rem !important;
}

.player-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius-sm);
    background: #000;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.player-meta {
    color: var(--text-light);
    font-size: 0.95rem;
}

.download-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1.5rem;
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 12px var(--shadow);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.user-email {
    font-size: 0.9rem;
    font-weight: 500;
}

.logout-btn {
    background: #FF4444;
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

/* Unified Header & Navbar */
.navbar {
    background: transparent;
    padding: 4rem 0 2rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border: none;
    backdrop-filter: none;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 250px !important;
    /* Extra-Extra Large Branding */
    width: auto;
    filter: drop-shadow(0 20px 40px var(--shadow-tactile));
    transform: scale(1.1);
}

.header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: -1rem;
}

.tagline {
    font-family: 'Fraunces', serif;
    color: var(--logo-clay);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.subtitle-main {
    font-family: 'Fraunces', serif;
    color: var(--logo-brown);
    margin: 1.5rem 0 0;
    font-size: 1.15rem;
    opacity: 0.7;
    text-align: center;
    max-width: 450px;
    letter-spacing: -0.01em;
}

/* Auth UI - Centered & Subtle */
.auth-controls {
    display: flex;
    justify-content: center;
    width: 100%;
}

.user-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    box-shadow: 0 2px 8px var(--shadow-tactile);
    border: 1px solid var(--logo-cream);
    max-width: 90vw;
    /* Constrain width on mobile */
}

.user-icon {
    width: 24px;
    height: 24px;
    background: var(--logo-clay);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    /* Don't shrink icon */
}

.user-name-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    /* Default max width */
}

@media (max-width: 480px) {
    .user-name-label {
        max-width: 120px;
        /* Tighter truncation on mobile */
    }
}

.logout-link {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.75rem;
    color: var(--logo-clay);
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.8;
}

/* Premium Name Input */
.form-input {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-family: 'Fredoka', sans-serif;
    color: var(--logo-brown);
    background: var(--white);
    border: 4px solid var(--logo-lite, #f9f7f2);
    border-radius: var(--border-radius-sm);
    box-shadow:
        inset 0 4px 10px rgba(0, 0, 0, 0.05),
        0 10px 30px var(--shadow-tactile);
    transition: var(--transition-bouncy);
    text-align: center;
}

.form-input:focus {
    outline: none;
    border-color: var(--logo-clay);
    transform: translateY(-2px);
    box-shadow:
        inset 0 2px 5px rgba(0, 0, 0, 0.03),
        0 15px 40px var(--shadow-tactile);
}

.form-input::placeholder {
    color: #d1c7bc;
    opacity: 0.6;
}

/* Tactile Character Buttons */
.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.character-btn {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 2rem 1rem;
    cursor: pointer;
    transition: var(--transition-bouncy);
    box-shadow:
        0 10px 20px var(--shadow-tactile),
        inset 0 -6px 0 rgba(0, 0, 0, 0.05);
    /* 3D bottom-depth */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.character-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-tactile);
}

.character-btn:active {
    transform: translateY(2px);
    box-shadow:
        0 4px 8px var(--shadow-tactile),
        inset 0 4px 10px rgba(0, 0, 0, 0.05);
}

.character-btn.active {
    background: var(--logo-clay);
    color: var(--white);
    border: 2px solid var(--logo-clay);
    box-shadow:
        0 4px 0px #A67455,
        0 10px 20px rgba(196, 139, 105, 0.4);
}

.character-icon {
    font-size: 4.5rem;
    /* Massive clear icons */
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.character-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Form Container Refinements */
.form-card {
    background: var(--white);
    border-radius: var(--border-radius-plump);
    padding: 3rem;
    box-shadow: 0 30px 80px var(--shadow-tactile);
}

.form-label {
    margin-bottom: 1.5rem;
}

/* Remove Hinglish specific style if any, but logic is handled in index.html */

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: var(--logo-clay);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--logo-clay);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.youtube-opt-in {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fdfbf7;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    border: 2px dashed #e2e8f0;
}

/* Auth & Payment Modal Styling */
.auth-modal-content,
.payment-modal-content {
    max-width: 450px !important;
    width: 90% !important;
    /* Ensure it doesn't overflow on small screens */
    margin: 0 auto;
    text-align: center;
    border-radius: var(--border-radius-plump) !important;
    padding: 2rem !important;
    /* Reduced padding for mobile */
}

/* Specific Mobile Adjustment for Modals */
/* Specific Mobile Adjustment for Modals & Cards */
@media (max-width: 480px) {

    /* Compact Modals */
    .auth-modal-content,
    .payment-modal-content {
        padding: 1.5rem 1rem !important;
        /* Tighter padding */
        width: 95% !important;
        max-height: 90vh;
        /* Prevent cut-off */
        overflow-y: auto;
        /* Allow internal scroll if needed */
    }

    .modal-body {
        padding: 0 !important;
        /* Remove nested padding */
    }

    .modal-brand-logo {
        height: 60px !important;
        /* Much smaller logo */
        margin-bottom: 0.25rem;
    }

    .auth-modal-body h2,
    .payment-modal-body h2 {
        font-size: 1.5rem !important;
        /* Smaller heading */
        margin-bottom: 0.5rem;
    }

    .auth-modal-body p,
    .payment-modal-body p {
        font-size: 0.95rem !important;
        /* Compact text */
        line-height: 1.4;
    }

    .feature-list {
        text-align: left;
        margin: 1rem 0;
        font-size: 0.9rem;
    }

    .cost-display {
        margin: 1rem 0;
        padding: 0.75rem;
    }

    .cost-amount {
        font-size: 2rem;
    }

    /* Prevent Zoom/Overflow in Song Library */
    .navbar {
        padding: 2rem 0 1rem !important;
    }

    .logo-img {
        height: 120px !important;
        /* Smaller main logo */
    }

    .container {
        padding: 1rem;
        /* Reduced container padding */
        width: 100%;
        overflow-x: hidden;
    }

    .song-list {
        width: 100%;
    }

    .song-card {
        padding: 1rem !important;
        gap: 0.75rem !important;
        border-width: 3px !important;
        /* Thinner border to save space */
        flex-wrap: wrap;
        /* Allow wrapping if needed, but try to keep tight */
        justify-content: space-between;
    }

    .song-thumbnail {
        width: 70px !important;
        height: 70px !important;
    }

    .song-info {
        min-width: 0;
        /* Allow text truncation */
    }

    .song-title {
        font-size: 1rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .song-play-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.2rem !important;
    }

    .song-yt-btn svg {
        width: 40px !important;
        /* Slightly smaller YT icon */
        height: auto !important;
    }
}

.modal-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    overflow-y: auto;
}

.auth-modal-body,
.payment-modal-body {
    gap: 1.5rem;
}

.modal-brand-logo {
    height: 100px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 10px 20px var(--shadow-tactile));
}

.auth-modal-body h2,
.payment-modal-body h2 {
    font-family: 'Fraunces', serif;
    color: var(--logo-brown);
    font-size: 2rem;
    margin: 0;
}

.auth-modal-body p,
.payment-modal-body p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Modal General Improvements */
.modal {
    background: rgba(100, 77, 58, 0.4);
    backdrop-filter: blur(10px);
}

.modal-content {
    border: 8px solid var(--white);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    max-width: 850px;
    width: 95%;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Header/Close button stay fixed if we add more, but body scrolls */
}

.modal-close {
    background: var(--logo-cream);
    color: var(--logo-clay);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-bouncy);
    z-index: 100;
    /* Stay on top */
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--logo-clay);
    color: var(--white);
}

.song-card {
    background: var(--white);
    border-radius: var(--border-radius-plump);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 50px var(--shadow-tactile);
    border: 6px solid var(--white);
    transition: var(--transition-bouncy);
}

.song-thumbnail {
    width: 140px;
    height: 140px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.song-info {
    flex: 1;
}

.song-title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--logo-brown);
}

.song-yt-btn {
    width: auto;
    height: auto;
    background: transparent !important;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 0.5rem;
    box-shadow: none !important;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.song-yt-btn svg {
    width: 100%;
    height: 100%;
    display: block;
    /* Removes weird line-height gaps */
}

.song-yt-btn:hover {
    transform: scale(1.1);
    background: transparent !important;
}

.song-yt-btn:hover svg {
    /* Optional: add hover effect specific to SVG if needed */
}

.yt-svg-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.song-youtube-btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.3);
}

.song-youtube-btn:active {
    transform: translateY(1px);
}

/* Success Modal Styling */
.success-modal-body {
    text-align: center;
    padding: 1rem 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.success-modal-body h2 {
    font-family: 'Fredoka', sans-serif;
    color: var(--logo-brown);
    margin-bottom: 1.5rem;
}

.success-message {
    background: var(--logo-cream);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    text-align: left;
    margin-bottom: 1rem;
    border: 2px dashed var(--logo-clay);
}

.success-message p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--logo-brown);
    line-height: 1.5;
}

.success-message p:last-child {
    margin-bottom: 0;
}

/* YouTube Opt-in Styles - Premium Toggle */
.youtube-opt-in {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.premium-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.premium-toggle input {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 48px;
    height: 24px;
    background-color: #E0E0E0;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.premium-toggle input:checked+.toggle-slider {
    background-color: var(--primary);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(74, 144, 226, 0.3);
}

.premium-toggle input:checked+.toggle-slider:before {
    transform: translateX(24px);
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--mushroom-taupe);
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
}

.premium-toggle:hover .toggle-slider {
    background-color: #D6D6D6;
}

.premium-toggle:hover input:checked+.toggle-slider {
    opacity: 0.95;
    transform: scale(1.02);
}

/* Promo Code Section - Premium Token Style */
.promo-code-container {
    padding: 0 5%;
}

.promo-label {
    font-size: 0.85rem;
    color: var(--mushroom-taupe);
    margin-bottom: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
}

.token-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fbfbfb;
    border: 1.5px solid #eaeaea;
    border-radius: 12px;
    padding: 2px 2px 2px 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.token-input-wrapper:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
}

.token-icon {
    font-size: 1.1rem;
    margin-right: 8px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
}

.token-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.token-input:focus {
    outline: none;
}

.token-apply-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 9px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.token-apply-btn:hover {
    background: #357abd;
    transform: scale(1.02);
}

.token-apply-btn:active {
    transform: scale(0.98);
}

.promo-status-text {
    font-size: 0.75rem;
    margin-top: 8px;
    min-height: 1rem;
    display: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Global YouTube Channel Button - Branded Aesthetic */
.youtube-channel-container {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.youtube-channel-link {
    padding: 1rem 2rem;
    background: var(--logo-clay);
    color: var(--white) !important;
    border-radius: var(--border-radius-plump);
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-bouncy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow:
        0 6px 0 var(--primary-dark),
        0 12px 20px var(--shadow-tactile);
    text-transform: capitalize;
    letter-spacing: 0.02em;
    border: none;
}

.youtube-channel-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 var(--primary-dark),
        0 15px 25px var(--shadow-tactile);
}

.youtube-channel-link:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 var(--primary-dark),
        0 5px 10px rgba(0, 0, 0, 0.1);
}

.yt-svg-small {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Song Actions Container */
.song-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* YouTube Button */
.song-yt-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.song-yt-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* =========================================
   RESPONSIVENESS & MOBILE OPTIMIZATIONS
   ========================================= */

/* Mobile Devices (PortraitPhones & Small Tablets) */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        width: 100%;
        overflow-x: hidden;
    }

    /* Navbar & Logo Compactness */
    .navbar {
        padding: 1.5rem 0 1rem !important;
        gap: 1rem;
        margin-top: 0;
    }

    .logo-img {
        height: 140px !important;
        /* Smaller logo */
    }

    .logo h1 {
        font-size: 2rem;
    }

    .subtitle-main {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.3;
    }

    /* Form Card Optimization */
    .form-card {
        padding: 1.25rem;
        border-radius: 24px;
        box-shadow: 0 10px 30px var(--shadow-tactile);
    }

    .form-section {
        margin-bottom: 1.5rem;
    }

    .form-input {
        font-size: 1.1rem;
        padding: 1rem;
    }

    /* Ensure Create Button is clickable and prominent */
    .create-btn {
        padding: 1rem;
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    /* Adjust Grids for Touch */
    .button-group {
        gap: 0.75rem;
    }

    .character-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 0.75rem;
    }

    .character-btn {
        padding: 1rem 0.5rem;
    }

    .character-icon {
        font-size: 3rem;
    }

    .character-name {
        font-size: 1rem;
    }

    /* Modals - Maximize Space */
    .modal {
        padding: 0;
        align-items: flex-end;
        /* Sheet style or full screen */
    }

    .modal-content {
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        /* Bottom sheet look or rounded top */
        max-height: 90vh;
        /* Leave a gap at top */
        padding: 1.5rem;
        border: none;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        background: #f0f0f0;
    }

    /* Library View */
    .library-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .song-card {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        text-align: center;
    }

    .song-thumbnail {
        width: 100px;
        height: 100px;
    }

    .song-tags {
        justify-content: center;
    }

    .song-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Very Small Devices (iPhone SE / Older Androids) */
@media (max-width: 380px) {
    .character-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-img {
        height: 110px !important;
    }

    .form-card {
        padding: 1rem;
    }
}