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

:root {
    --primary-color: #0062ea;
    --secondary-color: #03dac6;
    --background-color: #f5f5f5;
    --eO-white: #e0e0e0;
    --text-color: #212121;
    --typography: 'Inter', sans-serif;
}

body {
    font-family: var(--typography);
    background-color: var(--background-color);
    color: var(--text-color);
}

h1 {
    font-size: 2.7rem;
    font-weight: 700;
}

p {
    font-size: 1rem;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: var(--typography);
}

.btn .material-symbols-outlined {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 16px;
}

.black_text {
    color: var(--text-color);
    font-weight: 600;
}

/* Header */
header {
    background: var(--background-color);
    border-bottom: 1px solid var(--eO-white);
    position: fixed;
    width: 100%;
    z-index: 10;
    backdrop-filter: blur(6px);
    background-color: rgba(245, 245, 245, 0.85);
}

.__header_wrapper {
    padding: 20px;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-right: 10px;
}

.__header_wrapper span {
    font-size: 10px;
    color: #757575;
    border: 1px solid var(--eO-white);
    padding: 2px 6px;
    border-radius: 50px;
}

/* Hero */
.__hero {
    padding: 100px 20px 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 98, 234, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 98, 234, 0.1) 0%, rgba(3, 218, 198, 0.1) 100%);
    border: 1px solid rgba(0, 98, 234, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge .material-symbols-outlined {
    font-size: 18px;
}

.__hero_heading {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.__hero_desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.feature-item .material-symbols-outlined {
    color: var(--secondary-color);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
    box-shadow: 0 4px 15px rgba(0, 98, 234, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 98, 234, 0.4);
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

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

.services-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 25px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
    justify-items: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.service-logo:hover {
    transform: scale(1.1);
}

.service-name {
    font-size: 48px;
    color: #757575;
    transition: color 0.3s ease;
}

.service-item:hover .service-name {
    color: #424242;
}

/* Remove all service-specific background styles */
.netflix, .spotify, .youtube, .disney, .amazon, .apple {
    background: none;
}

.services-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-top: 15px;
}

.services-note .material-symbols-outlined {
    color: var(--secondary-color);
    font-size: 18px;
}

/* Responsive adjustments */
/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    .__hero_heading {
        font-size: 2.5rem;
    }
    
    .__hero_desc {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .service-logo {
        width: 70px;
        height: 70px;
    }
    
    .service-name {
        font-size: 36px;
    }
    
    .services-title {
        font-size: 1rem;
    }
    
    .__header_wrapper {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .__workflow {
        padding: 40px 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
}

/* Tablet Styles (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .__hero {
        padding: 120px 40px 80px 40px;
    }
    
    .__hero_heading {
        font-size: 3.5rem;
        max-width: 800px;
        margin: 0 auto 20px auto;
    }
    
    .__hero_desc {
        font-size: 1.3rem;
        max-width: 700px;
    }
    
    .hero-features {
        max-width: 700px;
        margin: 0 auto 40px auto;
        gap: 25px;
    }
    
    .hero-actions {
        gap: 20px;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 600px;
        margin: 0 auto 20px auto;
    }
    
    .service-logo {
        width: 85px;
        height: 85px;
    }
    
    .service-name {
        font-size: 52px;
    }
    
    .__header_wrapper {
        padding: 20px 40px;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .__workflow {
        padding: 60px 40px;
    }
    
    .timeline-container {
        max-width: 900px;
    }
    
    .timeline-content {
        padding: 30px;
    }
    
    .finale-content {
        padding: 70px 50px;
    }
    
    .finale-heading {
        font-size: 2.8rem;
    }
    
    .finale-description {
        font-size: 1.2rem;
    }
    
    .footer-content {
        max-width: 900px;
        margin: 0 auto 40px auto;
    }
}

/* Desktop Styles (1025px and up) */
@media (min-width: 1025px) {
    .__hero {
        padding: 140px 60px 100px 60px;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .__hero_heading {
        font-size: 4rem;
        max-width: 900px;
        margin: 0 auto 20px auto;
    }
    
    .__hero_desc {
        font-size: 1.4rem;
        max-width: 800px;
    }
    
    .hero-features {
        max-width: 900px;
        margin: 0 auto 50px auto;
        gap: 40px;
    }
    
    .feature-item {
        font-size: 15px;
    }
    
    .hero-actions {
        gap: 25px;
    }
    
    .btn {
        padding: 18px 28px;
        font-size: 16px;
    }
    
    .btn .material-symbols-outlined {
        font-size: 18px;
    }
    
    .hero-stats {
        padding-top: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 800px;
        margin: 0 auto 20px auto;
        gap: 30px;
    }
    
    .service-logo {
        width: 90px;
        height: 90px;
    }
    
    .service-name {
        font-size: 56px;
    }
    
    .services-title {
        font-size: 1.2rem;
    }
    
    .__header_wrapper {
        padding: 25px 60px;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .__workflow {
        padding: 80px 60px;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .__workflow_heading {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .timeline-container {
        max-width: 1000px;
    }
    
    .timeline-content {
        padding: 35px;
    }
    
    .timeline-content p {
        font-size: 17px;
    }
    
    .__section_finale {
        margin: 100px auto 60px auto;
        max-width: 1300px;
        width: calc(100% - 120px);
    }
    
    .finale-content {
        padding: 80px 60px;
    }
    
    .finale-heading {
        font-size: 3.2rem;
    }
    
    .finale-description {
        font-size: 1.25rem;
    }
    
    .finale-features {
        gap: 60px;
    }
    
    .finale-feature {
        font-size: 16px;
    }
    
    .btn-finale-primary {
        padding: 20px 40px;
        font-size: 17px;
    }
    
    .__footer__wrapper {
        max-width: 1400px;
        padding: 80px 60px 0;
    }
    
    .footer-content {
        gap: 80px;
    }
}

/* Large Desktop Styles (1440px and up) */
@media (min-width: 1441px) {
    .__hero {
        max-width: 1600px;
    }
    
    .__hero_heading {
        font-size: 4.5rem;
        max-width: 1000px;
    }
    
    .__hero_desc {
        font-size: 1.5rem;
        max-width: 900px;
    }
    
    .hero-features {
        max-width: 1100px;
        gap: 50px;
    }
    
    .services-grid {
        max-width: 900px;
        gap: 40px;
    }
    
    .__header_wrapper {
        max-width: 1600px;
    }
    
    .__workflow {
        max-width: 1600px;
    }
    
    .timeline-container {
        max-width: 1200px;
    }
    
    .__section_finale {
        max-width: 1500px;
        width: calc(100% - 140px);
        margin: 120px auto 80px auto;
    }
    
    .finale-heading {
        font-size: 3.5rem;
    }
    
    .__footer__wrapper {
        max-width: 1600px;
    }
}

/* Base responsive container */
.main {
    width: 100%;
    margin: 0 auto;
}

/* Header responsiveness improvements */
.__header_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

/* Hero section improvements */
.__hero {
    width: 100%;
    margin: 0 auto;
}

/* Services grid responsiveness */
.supported-services {
    width: 100%;
}

/* Timeline responsiveness improvements */
@media (min-width: 769px) {
    .timeline-item {
        margin-bottom: 50px;
    }
    
    .timeline-marker {
        margin-right: 30px;
    }
    
    .timeline-dot {
        width: 12px;
        height: 12px;
    }
    
    .timeline-line {
        left: 6px;
        top: 6px;
        width: 2px;
    }
}

.__workflow_heading {
    margin-bottom: 40px;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-list {
    list-style: none;
    position: relative;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin-right: 20px;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--eO-white);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--eO-white);
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    transform: scale(1.2);
}

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 2px solid var(--eO-white);
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-content {
    border-left-color: var(--primary-color);
    transform: translateX(10px);
}

.step-number {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.timeline-line {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 1px;
    height: calc(100% - 60px);
    background-color: var(--eO-white);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: height 0.3s ease;
}

/* Section Finale */
.__section_finale {
    background: linear-gradient(135deg, rgba(0, 98, 234, 0.05) 0%, rgba(3, 218, 198, 0.05) 100%);
    border: 1px solid rgba(0, 98, 234, 0.1);
    border-radius: 20px;
    margin: 80px auto 40px auto;
    max-width: 1300px;
    width: calc(100% - 40px);
    position: relative;
    overflow: hidden;
}

.__section_finale::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.finale-content {
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.finale-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 98, 234, 0.1) 0%, rgba(3, 218, 198, 0.1) 100%);
    border: 1px solid rgba(0, 98, 234, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.finale-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--secondary-color);
}

.finale-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.finale-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.finale-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.finale-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.finale-feature .material-symbols-outlined {
    color: var(--secondary-color);
    font-size: 20px;
}

.finale-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-finale-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
    color: #fff;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 98, 234, 0.3);
    transform: translateY(0);
}

.btn-finale-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 98, 234, 0.4);
}

.btn-finale-primary .material-symbols-outlined {
    font-size: 18px;
    margin-left: 8px;
}

.finale-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.finale-note .material-symbols-outlined {
    font-size: 16px;
    color: var(--secondary-color);
}

/* Responsive Finale */
@media (max-width: 768px) {
    .__section_finale {
        margin: 60px auto 30px auto;
        width: calc(100% - 40px);
        max-width: none;
    }
    
    .finale-content {
        padding: 40px 30px;
    }
    
    .finale-heading {
        font-size: 2rem;
    }
    
    .finale-description {
        font-size: 1rem;
    }
    
    .finale-features {
        gap: 25px;
    }
    
    .btn-finale-primary {
        padding: 16px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .__section_finale {
        width: calc(100% - 20px);
    }
    
    .finale-content {
        padding: 30px 20px;
    }
    
    .finale-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .finale-heading {
        font-size: 1.8rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    margin-top: 80px;
}

.__footer__wrapper {
    padding: 60px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin: 20px 0 0 0;
    font-size: 14px;
}

.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 14px;
}

.contact-item .material-symbols-outlined {
    font-size: 18px;
    color: var(--secondary-color);
}

.contact-item a {
    color: #ccc;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: #888;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #888;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 10px;
        max-width: none;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Waitlist Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0 24px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background-color: #f0f0f0;
}

.modal-body {
    padding: 0 24px 24px 24px;
}

.modal-body p {
    color: #666;
    margin-bottom: 24px;
    font-size: 16px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--typography);
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 98, 234, 0.1);
}

.form-group input:invalid {
    border-color: #f44336;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052c7 100%);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 98, 234, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinning {
    animation: spin 1s linear infinite;
}

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

.success-message,
.error-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
}

.success-message {
    background-color: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.success-message .material-symbols-outlined {
    color: #2e7d32;
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.error-message .material-symbols-outlined {
    color: #c62828;
}

.success-message p,
.error-message p {
    margin: 0;
    font-weight: 500;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 20px 0 20px;
    }
    
    .modal-body {
        padding: 0 20px 20px 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
}

