@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0 1rem;
}

.nav-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
    margin-right: auto;
}

.nav-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    filter: brightness(1.2) contrast(1.1);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    margin-left: auto;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    padding-top: 80px;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    display: none; /* Hide the hero logo since it's now in the nav */
}

.hero-logo:hover {
    transform: scale(1.05);
}

.main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.tagline-container {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.tagline-container:hover {
    background: transparent;
    transform: translateY(-2px);
}

.phone-icon {
    font-size: 1.8rem;
    color: #fff;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.tagline-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #f5f5f5;
    margin: 0;
    letter-spacing: 0.02em;
}

.coming-soon {
    margin-top: 2rem;
    opacity: 0.7;
}

.coming-soon-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #b0b0b0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

/* About Us Section */
.about-section {
    margin-top: 0;
    padding: 0 2rem 2rem 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-box, .vision-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.box-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.box-icon {
    font-size: 1.8rem;
}

.box-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

/* Waitlist Section */
.waitlist-section {
    margin-top: 5rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.launch-date-section {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
}

.launch-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
}

.launch-date {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.waitlist-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.waitlist-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
    color: #888;
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .tagline-container {
        padding: 1.25rem 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .tagline-text {
        font-size: 1.1rem;
    }
    
    .phone-icon {
        font-size: 1.5rem;
    }
    
    .waitlist-section {
        margin-top: 3rem;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        height: 50px;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .tagline-text {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-section {
        margin-top: 0;
        padding: 1rem 1rem 2rem 1rem;
    }
    
    .waitlist-section {
        margin-top: 2rem;
        padding: 2rem 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .waitlist-title {
        font-size: 1.75rem;
    }
    
    .waitlist-description {
        font-size: 0.95rem;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
}

/* ========================================
   BETA PAGE STYLES
   ======================================== */

.beta-hero {
    padding: 150px 0 80px 0;
    text-align: center;
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.beta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.beta-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #d0d0d0;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.beta-form-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

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

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: #888;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.beta-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    border: none;
    border-radius: 10px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.beta-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.beta-features {
    max-width: 900px;
    margin: 0 auto 5rem auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.requirements-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.requirements-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #d0d0d0;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li i {
    color: #fff;
    font-size: 1.25rem;
}

/* Recording Item Styles */
.recording-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.recording-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #fff;
}

.recording-number {
    font-weight: 600;
}

.recording-time {
    color: #888;
    font-size: 0.9rem;
}

.download-btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Status Indicator Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

#statusIndicator.recording {
    background: #ff6b6b;
    animation: pulse 1.5s infinite;
}

#statusIndicator.success {
    background: #4CAF50;
}

#statusIndicator.error {
    background: #ff6b6b;
}

#statusIndicator.processing {
    background: #ffa726;
    animation: pulse 1s infinite;
}

/* Safety History Animations */
@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Beta Page Responsive Design */
@media (max-width: 768px) {
    .beta-hero {
        padding: 120px 0 60px 0;
    }

    .beta-title {
        font-size: 2.25rem;
    }

    .beta-description {
        font-size: 1.1rem;
    }

    .beta-form-section, .requirements-section {
        padding: 2rem 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .beta-title {
        font-size: 1.75rem;
    }

    .beta-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRIVACY POLICY PAGE STYLES
   ======================================== */

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.policy-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.policy-last-updated {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-subsection-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.policy-list {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 2;
    color: #d0d0d0;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.8rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.contact-info p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #d0d0d0;
    margin-bottom: 0.75rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #fff;
}

/* Privacy Policy Responsive Design */
@media (max-width: 768px) {
    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-title {
        font-size: 2.25rem;
    }

    .policy-section-title {
        font-size: 1.5rem;
    }

    .policy-subsection-title {
        font-size: 1.1rem;
    }

    .policy-text {
        font-size: 1rem;
    }

    .policy-list {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-container {
        padding: 1.5rem 1rem;
    }

    .policy-title {
        font-size: 1.75rem;
    }

    .policy-section-title {
        font-size: 1.25rem;
    }

    .policy-subsection-title {
        font-size: 1rem;
    }

    .policy-text,
    .policy-list {
        font-size: 0.95rem;
    }

    .contact-info {
        padding: 1.5rem 1rem;
    }
}

/* Legal Navigation */
.legal-nav {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0 0.5rem;
}

.legal-link:hover {
    color: #fff;
    text-decoration: underline;
}

.legal-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

/* ========================================
   DELETE ACCOUNT PAGE STYLES
   ======================================== */

.delete-account-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.delete-account-header {
    text-align: center;
    margin-bottom: 2rem;
}

.delete-warning-icon {
    font-size: 4rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
    display: block;
}

.delete-account-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.delete-account-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #ff6b6b;
    font-weight: 500;
}

.delete-warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.warning-box-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box-title i {
    color: #ff6b6b;
    font-size: 1.5rem;
}

.warning-box-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.warning-list {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.8;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.warning-list li {
    margin-bottom: 0.5rem;
}

.delete-form-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.form-section-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.delete-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.confirmation-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.confirmation-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #d0d0d0;
    line-height: 1.5;
    cursor: pointer;
}

.alert-message {
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.alert-error {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
}

.alert-success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #4CAF50;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cancel-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.delete-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #d64545 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.delete-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.delete-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.delete-success-section {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon-container {
    margin-bottom: 2rem;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
}

.success-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.success-message {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

.return-home-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.return-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Delete Account Responsive Design */
@media (max-width: 768px) {
    .delete-account-container {
        padding: 1.5rem 1rem;
    }

    .delete-account-title {
        font-size: 2rem;
    }

    .delete-warning-icon {
        font-size: 3rem;
    }

    .delete-form-section {
        padding: 2rem 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .cancel-btn,
    .delete-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .delete-account-title {
        font-size: 1.75rem;
    }

    .delete-warning-box {
        padding: 1.5rem;
    }

    .delete-form-section {
        padding: 1.5rem 1rem;
    }

    .form-section-title {
        font-size: 1.5rem;
    }

    .success-icon {
        font-size: 4rem;
    }
}
