/* Payment Page */
.payment-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 50px 20px 40px 20px;
    gap: 30px;
    box-sizing: border-box;
}

.payment-warning {
    font-size: 96px;
    color: #FF0000;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
}

.payment-subtitle {
    font-size: 36px;
    color: #FF0000;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
    max-width: 900px;
}

.payment-amount-label {
    font-size: 75px;
    color: #FF0000;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 50px 0 0 0;
}

.payment-amount {
    font-size: 170px;
    color: #FF0000;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
}

.payment-button {
    width: 321px;
    height: 69px;
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 50px;
}

.payment-button:hover {
    background-color: #B00707;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.03);
}

@media (max-width: 1200px) {
    .payment-warning {
        font-size: 80px;
    }

    .payment-subtitle {
        font-size: 32px;
    }

    .payment-amount-label {
        font-size: 60px;
    }

    .payment-amount {
        font-size: 140px;
    }

    .payment-button {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .payment-container {
        padding: 80px 20px 30px 20px;
        gap: 20px;
    }

    .payment-warning {
        font-size: 64px;
    }

    .payment-subtitle {
        font-size: 28px;
    }

    .payment-amount-label {
        font-size: 48px;
    }

    .payment-amount {
        font-size: 110px;
    }

    .payment-button {
        margin-top: 35px;
    }

    .payment-button {
        width: 260px;
        height: 60px;
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .payment-container {
        padding: 70px 16px 24px 16px;
    }

    .payment-warning {
        font-size: 48px;
    }

    .payment-subtitle {
        font-size: 22px;
    }

    .payment-amount-label {
        font-size: 40px;
    }

    .payment-amount {
        font-size: 80px;
    }

    .payment-button {
        width: 220px;
        height: 55px;
        font-size: 32px;
        margin-top: 30px;
    }
}

@media (max-width: 395px) {
    .payment-amount {
        font-size: 75px;
    }
}

@media (max-width: 379px) {
    .payment-amount {
        font-size: 70px;
    }
}

/* Promo Popup */
.promo-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.promo-popup-content {
    width: 493px;
    min-height: 473px;
    max-width: 100%;
    background-color: #FE6969;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 22px 30px 30px 30px;
    box-sizing: border-box;
    position: relative;
    transform-origin: center;
}

.promo-title {
    font-size: 64px;
    color: #FFE9E9;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.promo-text {
    font-size: 36px;
    color: #FFE9E9;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.promo-logo {
    width: 110.35px;
    height: 67px;
    margin: 0 0 25px 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.promo-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.promo-button {
    width: 191px;
    height: 49px;
    background-color: #D00808;
    border: none;
    border-radius: 20px;
    color: #FFE9E9;
    font-size: 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    cursor: pointer;
    margin: 0 0 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.promo-button:hover {
    transform: scale(1.05);
}

.promo-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.promo-checkbox {
    width: 20px;
    height: 21px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #FFE9E9;
    border-radius: 10px;
    background-color: #FE6969;
    cursor: pointer;
    position: relative;
    margin: 0;
    flex-shrink: 0;
}

.promo-checkbox:checked {
    background-color: #FFE9E9;
    border-color: #FFE9E9;
}

.promo-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FE6969;
    font-size: 14px;
    font-weight: bold;
}

.promo-checkbox-text {
    font-size: 20px;
    color: #FFE9E9;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    user-select: none;
}

/* On very small screens let the popup shrink to content height to remove extra bottom space */
@media (max-width: 471px) {
    .promo-popup-content {
        min-height: auto;
        height: auto;
    }
}

/* Slightly reduce promo text on narrow screens so it fits better */
@media (max-width: 462px) {
    .promo-text {
        font-size: 35px;
        line-height: 1.25;
    }
}

/* Further reduce popup title and text on very narrow screens */
@media (max-width: 451px) {
    .promo-title {
        font-size: 62px;
    }

    .promo-text {
        font-size: 34px;
    }
}

@media (max-width: 441px) {
    .promo-title {
        font-size: 61px;
    }

    .promo-text {
        font-size: 33px;
    }
}

/* Gradually reduce popup title and text 1px every 10px from 431px downward */
@media (max-width: 431px) {
    .promo-title {
        font-size: 60px;
    }

    .promo-text {
        font-size: 32px;
    }
}

@media (max-width: 421px) {
    .promo-title {
        font-size: 59px;
    }

    .promo-text {
        font-size: 31px;
    }
}

@media (max-width: 411px) {
    .promo-title {
        font-size: 58px;
    }

    .promo-text {
        font-size: 30px;
    }
}

@media (max-width: 401px) {
    .promo-title {
        font-size: 57px;
    }

    .promo-text {
        font-size: 29px;
    }
}

@media (max-width: 391px) {
    .promo-title {
        font-size: 56px;
    }

    .promo-text {
        font-size: 28px;
    }
}

@media (max-width: 381px) {
    .promo-title {
        font-size: 55px;
    }

    .promo-text {
        font-size: 27px;
    }
}

@media (max-width: 371px) {
    .promo-title {
        font-size: 54px;
    }

    .promo-text {
        font-size: 26px;
    }
}

@media (max-width: 361px) {
    .promo-title {
        font-size: 53px;
    }

    .promo-text {
        font-size: 25px;
    }
}

@media (max-width: 351px) {
    .promo-title {
        font-size: 52px;
    }

    .promo-text {
        font-size: 24px;
    }
}

@media (max-width: 341px) {
    .promo-title {
        font-size: 51px;
    }

    .promo-text {
        font-size: 23px;
    }
}

@media (max-width: 331px) {
    .promo-title {
        font-size: 50px;
    }

    .promo-text {
        font-size: 22px;
    }
}

@media (max-width: 321px) {
    .promo-title {
        font-size: 49px;
    }

    .promo-text {
        font-size: 21px;
    }
}

@media (max-width: 320px) {
    .promo-title {
        font-size: 48px;
    }

    .promo-text {
        font-size: 20px;
    }
}

/* Promo popup responsive scaling (proportional from large screens) */
/* Base (large screens): scale(1) */
@media (max-width: 1400px) {
    .promo-popup-content {
        transform: scale(0.98);
    }
}

@media (max-width: 1200px) {
    .promo-popup-content {
        transform: scale(0.95);
    }
}

@media (max-width: 992px) {
    .promo-popup-content {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .promo-popup-content {
        transform: scale(0.85);
    }
}

@media (max-width: 600px) {
    .promo-popup-content {
        transform: scale(0.85);
    }
}

@media (max-width: 480px) {
    .promo-popup-content {
        transform: scale(0.85);
    }
}

@media (max-width: 400px) {
    .promo-popup-content {
        transform: scale(0.85);
    }
}

@media (max-width: 360px) {
    .promo-popup-content {
        transform: scale(0.8);
    }
}

@media (max-width: 320px) {
    .promo-popup-content {
        transform: scale(0.7);
    }
}


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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: #FFE9E9;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 200px;
    width: 100%;
    position: relative;
    z-index: 100;
}

.header:has(.about-title) {
    justify-content: space-between;
}

.header:has(.about-title) .about-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-icon {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-icon:hover {
    transform: scale(1.1);
}

.menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-title {
    font-size: 96px;
    color: #FF0000;
    text-align: center;
    margin: 1px 0;
    font-weight: 400;
}

.avatar-icon {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.avatar-icon:hover {
    transform: scale(1.1);
}

.avatar-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* YouTube Icon */
.youtube-section {
    text-align: center;
    margin: 0px 0;
}

.youtube-icon {
    width: 500px;
    height: 500px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.youtube-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 190px;
    height: 370px;
    background: linear-gradient(90deg, transparent, rgba(255, 233, 233, 0.95), rgba(255, 233, 233, 0.8), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: 3;
    border-radius: 20px;
    transform: translateY(-50%);
}

@keyframes shimmer {
    0% {
        left: -100px;
    }
    100% {
        left: 400px;
    }
}

.youtube-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.buy-text {
    font-size: 64px;
    color: #FF0000;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Main Content */
.main-content {
    display: flex;
    justify-content: space-between;
    padding: 0 200px;
    gap: 20px;
    margin-bottom: 40px;
}

.left-column, .right-column {
    flex: 1;
    max-width: 600px;
}

.left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.left-column-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 64px;
    color: #FF0000;
    margin-bottom: 40px;
    font-weight: 400;
}

.left-column .section-title {
    text-align: center;
}

.right-column .section-title {
    text-align: right;
}

/* Price Input Rectangles */
.price-input {
    background-color: #FE6969;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
    transition: transform 0.3s ease;
}

.price-input.daily:hover {
    transform: scale(1.05);
}

.price-input.other:hover {
    transform: scale(1.05);
}

.price-input.daily {
    width: 223px;
    height: 79px;
    font-size: 40px;
    margin: 0;
    text-align: center;
    position: relative;
}

.daily-input-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
    
}

.daily-label {
    text-align: center;
    color: #FF0000;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.price-input.other {
    width: 580px;
    height: 79px;
    font-size: 40px;
    align-self: flex-start;
    margin-left: 0;
    cursor: default;
}

.other-inputs-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 20px;
    align-self: flex-start;
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
}

/* Responsive adjustments for input containers */
@media (max-width: 1024px) {
    .other-inputs-container {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .other-inputs-container {
        max-width: 100%;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .other-inputs-container {
        max-width: 100%;
        align-items: center;
    }
}

.price-input:focus {
    outline: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.price-input::placeholder {
    color: #FFE9E9;
}

/* Google Bonus Rectangles */
.bonus-card {
    background-color: #FFFFFF;
    color: #1768FF;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 269px;
    height: 231px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: default;
}

.bonus-card:hover {
    transform: scale(1.05);
}

.bonus-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

/* Ensure proper spacing and alignment for bonus cards */
@media (max-width: 768px) {
    .bonus-cards-container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bonus-cards-container {
        justify-content: center;
        gap: 15px;
    }
}

/* Ensure profile picture stays circular at all screen sizes */
.avatar-icon img {
    border-radius: 50%;
    object-fit: cover;
}

/* Ensure bonus cards maintain square-like proportions */
.bonus-card {
    aspect-ratio: 1.16; /* Maintains the original 269x231 ratio */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ensure menu and avatar icons maintain square proportions */
.menu-icon, .avatar-icon {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure price inputs maintain their proportions */
.price-input.daily {
    aspect-ratio: 2.82; /* Maintains the original 223x79 ratio */
}

.price-input.other {
    aspect-ratio: 7.34; /* Maintains the original 580x79 ratio */
}

.bonus-cards-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.bonus-cards-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
}

.bonus-amount {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

.bonus-credits {
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
    white-space: nowrap;
}

.bonus-description {
    font-size: 20px;
    line-height: 1.1;
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-height: 80px;
}

/* Buy Button */
.buy-button {
    --buy-button-offset: 0px;
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    display: block;
    width: fit-content;
    align-self: flex-end;
    margin-left: auto;
    transform: translateX(var(--buy-button-offset)) scale(1);
}

.buy-button:hover {
    background-color: #B00707;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(var(--buy-button-offset)) scale(1.05);
}

/* Authorization Page */
.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    padding: 5px 20px 10px 20px; /* Reduced bottom padding */
    box-sizing: border-box;
    overflow-y: auto; /* Allow scrolling by default */
}

/* Move auth page content down from 1024px and below */
@media (max-width: 1024px) {
    .auth-container {
        padding-top: 20px !important; /* Move content down */
    }
}

@media (max-width: 768px) {
    .auth-container {
        padding-top: 20px !important; /* Move content down more on smaller screens */
    }
}

@media (max-width: 480px) {
    .auth-container {
        padding-top: 20px !important; /* Move content down even more on mobile */
    }
}

@media (min-width: 1800px) {
    .auth-container {
        overflow: hidden; /* Disable scroll on spacious screens */
    }
}

.auth-title {
    font-size: 64px;
    color: #FF0000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.auth-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 610px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-label {
    font-size: 48px;
    color: #FF0000;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.auth-input {
    width: 610px;
    height: 75px;
    background-color: #FE6969;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease, transform 0.3s ease;
}

.auth-input:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.auth-input::placeholder {
    color: #FFE9E9;
}

.auth-input:focus {
    outline: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.contact-method {
    width: 610px;
    height: 75px;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, transform 0.3s ease;
}

.contact-method:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-method.active:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.contact-method.active {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-method.telegram {
    background-color: #0090C4;
}

.contact-method.whatsapp {
    background-color: #2EC400;
}

.contact-method.phone {
    background-color: #E6AC0A;
}

.contact-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.auth-button {
    width: 355px;
    height: 49px;
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, transform 0.3s ease;
    margin-top: 10px; /* Reduced to fit within viewport */
}

.auth-button:hover {
    background-color: #B00707;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.signin-link {
    text-align: center;
    margin-top: -15px; /* Reduced from 10px to move text up */
}

.signin-button {
    background: none;
    border: none;
    color: #FF0000;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.signin-button:hover {
    color: #B00707;
    transform: scale(1.02);
}

.error-message {
    color: #FF0000;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    min-height: 20px;
}

/* Consent Section for Auth Page */
.consent-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px; /* Further reduced to fit within viewport */
    max-width: 610px;
    width: 100%;
    justify-content: center;
}

.consent-checkbox {
    width: 20px;
    height: 20px;
    background-color: #FFFFFF !important;
    border: 2px solid #FE6969 !important;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
}

.consent-checkbox:checked {
    background-color: #FF0000 !important;
    border-color: #FE6969 !important;
}

.consent-checkbox:checked::after {
    content: '✓' !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: bold !important;
}

.consent-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px; /* Match signin-button font size */
    color: #FF0000; /* Red color for 'Я согласен на' */
    line-height: 1.4;
    text-align: left;
}

.consent-link {
    color: #FE6969; /* Pink color for 'обработку персональных данных' */
    text-decoration: underline; /* Always underlined */
    font-weight: 500;
}

.consent-link:hover {
    color: #B00707; /* Match signin-button hover color */
    text-decoration: underline; /* Keep underlined on hover */
}

/* Responsive Design - Proportional Scaling */

/* Medium-large screens - prevent header icons from moving too close to center */
@media (max-width: 1669px) {
    .header {
        padding: 20px 100px;
    }
}

/* Gradual scaling for screens less than 694px */
@media (max-width: 694px) {
    .other-inputs-container {
        align-items: flex-start !important; /* Match large screen behavior */
        width: 100%;
        max-width: calc(100vw - 100px) !important; /* Gradual scaling with margin */
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .price-input.other {
        width: calc(100vw - 120px) !important; /* Gradual scaling with margin */
        max-width: calc(100vw - 120px) !important;
        align-self: flex-start !important; /* Match large screen behavior */
    }
    
    .price-input.daily {
        width: 160px !important;
        height: 56px !important;
        font-size: 28px !important;
        align-self: flex-start !important; /* Match large screen behavior */
    }
}

/* Fix 481px-600px range - find perfect width to align with button */
@media (max-width: 600px) and (min-width: 481px) {
    .other-inputs-container {
        max-width: calc(100vw - 100px) !important; /* Perfect width to align with button */
        align-items: flex-start !important; /* Match 480px behavior */
    }
    
    .price-input.other {
        width: calc(100vw - 120px) !important; /* Perfect width to align with button */
        max-width: calc(100vw - 120px) !important;
        align-self: flex-start !important; /* Match 480px behavior */
    }
    
    .price-input.daily {
        align-self: flex-start !important; /* Match 480px behavior */
    }
}


/* Large screens - proportional scaling */
@media (max-width: 1200px) {
    .header {
        padding: 15px 20px; 
    }
    
    .main-title {
        font-size: 80px;
    }
    
    .buy-text {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 56px;
    }
    
    .youtube-icon {
        width: 420px;
        height: 420px;
    }
    
    .main-content {
        padding: 0 150px;
    }
    
    /* Proportional scaling for all elements */
    .menu-icon, .avatar-icon {
        width: 85px;
        height: 85px;
    }
    
    .price-input.daily {
        width: 190px;
        height: 67px;
        font-size: 34px;
    }
    
    .price-input.other {
        width: 493px;
        height: 67px;
        font-size: 34px;
    }
    
    .bonus-card {
        width: 229px;
        height: 197px;
    }
    
    .bonus-amount {
        font-size: 34px;
    }
    
    .bonus-credits {
        font-size: 20px;
    }
    
    .bonus-description {
        font-size: 17px;
    }
    
    .buy-button {
        font-size: 31px;
        padding: 13px 34px;
    }
    
    .daily-label {
        font-size: 20px;
    }
}

/* Medium screens - layout change: calculate price under google bonuses */
@media (max-width: 1599px) {
    .main-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    /* Reorder sections: Google bonuses first, then calculate price */
    .right-column {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .left-column {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    /* Center the section titles */
    .right-column .section-title {
        text-align: center;
    }
    
    .left-column .section-title {
        text-align: center;
    }
    
    /* Ensure bonus cards don't get bigger than on large screens */
    .bonus-card {
        width: 269px;
        height: 231px;
    }
    
    .bonus-amount {
        font-size: 40px;
    }
    
    .bonus-credits {
        font-size: 24px;
    }
    
    .bonus-description {
        font-size: 20px;
    }
    
    /* Center the bonus cards */
    .bonus-cards-container {
        justify-content: center;
        width: 100%;
    }
    
    .bonus-cards-top {
        justify-content: center;
    }
    
    .bonus-cards-bottom {
        justify-content: center;
    }
    
    /* Center the price calculation inputs */
    .left-column-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .other-inputs-container {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1400px) {
    .header {
        padding: 25px 70px;
    }
    
    .main-title {
        font-size: 80px;
    }
}

@media (max-width: 1200px) {
    .main-title {
        font-size: 72px;
    }
}

@media (max-width: 1100px) {
    .header {
        padding: 30px 70px;
    }
    
    .main-title {
        font-size: 64px;
    }
    
    .buy-text {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .youtube-icon {
        width: 380px;
        height: 380px;
    }
    
    .main-content {
        padding: 0 100px;
    }
    
    /* Proportional scaling for all elements */
    .menu-icon, .avatar-icon {
        width: 80px;
        height: 80px;
    }
    
    .price-input.daily {
        width: 180px;
        height: 63px;
        font-size: 32px;
    }
    
    .price-input.other {
        width: 465px;
        height: 63px;
        font-size: 32px;
    }
    
    /* Keep bonus cards at original size or smaller, never bigger */
    .bonus-card {
        width: 216px;
        height: 186px;
    }
    
    .bonus-amount {
        font-size: 32px;
    }
    
    .bonus-credits {
        font-size: 19px;
    }
    
    .bonus-description {
        font-size: 16px;
    }
    
    .buy-button {
        font-size: 28px;
        padding: 12px 32px;
    }
    
    .daily-label {
        font-size: 19px;
    }
}

/* Tablet and smaller screens */
/* Medium screens - reduce header elements */
@media (max-width: 999px) and (min-width: 769px) {
    .header {
        padding: 30px 50px;
    }
    
    .main-title {
        font-size: 50px;
    }
    
    .menu-icon, .avatar-icon {
        width: 60px;
        height: 60px;
    }
}

/* Specific range for Google bonuses text scaling */
@media (max-width: 768px) and (min-width: 481px) {
    .bonus-amount {
        font-size: 36px !important;/* Increased from 36px */
    }
    
    .bonus-credits {
        font-size: 21px !important; /* Increased from 21px */
    }
    
    .bonus-description {
        font-size: 16px !important;/* Increased from 18px */
        line-height: 1.4 !important; /* Slightly increased line height */
    }
}

/* Reduce header elements for 699px to 480px range */
@media (max-width: 699px) and (min-width: 600px) {
    .header {
        padding: 30px 30px !important; /* Reduced padding */
    }
    
    .main-title {
        font-size: 36px !important; /* Reduced font size */
    }
    
    .menu-icon, .avatar-icon {
        width: 60px !important; /* Reduced icon size */
        height: 60px !important; /* Reduced icon size */
    }
}

@media (max-width: 599px) and (min-width: 480px) {
    .header {
        padding: 30px 15px !important; /* Reduced padding */
    }
    
    .main-title {
        font-size: 34px !important; /* Reduced font size */
    }
    
    .menu-icon, .avatar-icon {
        width: 50px !important; /* Reduced icon size */
        height: 50px !important; /* Reduced icon size */
    }
}

/* Reduce header elements for 479px to 349px range */
@media (max-width: 479px) and (min-width: 421px) {
    .header {
        padding: 35px 15px !important; /* Further reduced padding */
    }
    
    .main-title {
        font-size: 28px !important; /* Further reduced font size */
    }
    
    .menu-icon, .avatar-icon {
        width: 50px !important; /* Further reduced icon size */
        height: 50px !important; /* Further reduced icon size */
    }
}

@media (max-width: 420px) and (min-width: 351px) {
    .header {
        padding: 35px 10px !important; /* Further reduced padding */
    }
    
    .main-title {
        font-size: 24px !important; /* Further reduced font size */
    }
    
    .menu-icon, .avatar-icon {
        width: 45px !important; /* Further reduced icon size */
        height: 45px !important; /* Further reduced icon size */
    }
}

/* YouTube logo 300x300 for 420px to 360px range */
@media (max-width: 480px) and (min-width: 360px) {
    .youtube-icon {
        width: 250px !important;
        height: 250px !important;
    }
}

/* Reduce 'Купить рекламу в Youtube' text from 400px to 361px */
@media (max-width: 400px) and (min-width: 361px) {
    .buy-text {
        font-size: 24px !important; /* Reduced font size */
    }
}

/* Proportionally reduce Google bonuses for screens less than 480px */
@media (max-width: 480px) {
    .bonus-card {
        width: 200px !important; /* Proportionally reduced from 269px */
        height: 172px !important; /* Proportionally reduced from 231px */
        margin-bottom: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 12px !important; /* Proportionally reduced padding */
    }
    
    .bonus-amount {
        font-size: 30px !important; /* Proportionally reduced from 40px */
        margin-bottom: 4px !important;
    }
    
    .bonus-credits {
        font-size: 18px !important; /* Proportionally reduced from 24px */
        margin-bottom: 6px !important;
    }
    
    .bonus-description {
        font-size: 15px !important; /* Proportionally reduced from 20px */
        line-height: 1.1 !important;
    }
}


@media (max-width: 768px) {
    .header {
        padding: 20px 30px;
    }
    
    .main-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 50px;
        align-items: center;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .buy-text {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .youtube-icon {
        width: 300px;
        height: 300px;
    }
    
    /* Proportional scaling for all elements */
    .menu-icon, .avatar-icon {
        width: 70px;
        height: 70px;
    }
    
    .price-input.daily {
        width: 160px;
        height: 56px;
        font-size: 28px;
    }
    
    .price-input.other {
        width: 100%;
        height: 56px;
        font-size: 24px;
    }
    
    .bonus-card {
        width: 240px; /* Proportionally increased for small screens */
        height: 206px; /* Proportionally increased for small screens */
        margin: 0 auto 15px;
        padding: 18px; /* Proportionally increased padding */
    }
    
    .bonus-amount {
        font-size: 36px; /* Proportionally increased font size */
        margin-bottom: 5px; /* Adjusted spacing */
    }
    
    .bonus-credits {
        font-size: 21px; /* Proportionally increased font size */
        margin-bottom: 8px; /* Adjusted spacing */
    }
    
    .bonus-description {
        font-size: 18px; /* Proportionally increased font size */
        line-height: 1.3; /* Adjusted line height */
    }
    
    .bonus-cards-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .bonus-cards-bottom {
        justify-content: center;
        margin-top: 0; /* Remove extra margin for small screens */
    }
    
    /* Ensure all cards have equal spacing when stacked vertically */
    .bonus-card {
        margin-bottom: 15px; /* Consistent spacing for all cards */
    }
    
    .bonus-card:last-child {
        margin-bottom: 0; /* Remove bottom margin from last card */
    }
    
    .bonus-amount {
        font-size: 28px;
    }
    
    .bonus-credits {
        font-size: 16px;
    }
    
    .bonus-description {
        font-size: 14px;
    }
    
    .buy-button {
        font-size: 24px;
        width: 200px; /* Proportionally reduced from original */
        height: 50px; /* Proportionally reduced from original */
        padding: 10px 20px;
    }
    
    .daily-label {
        font-size: 16px;
    }
    
    /* Ensure both sections are centered */
    .right-column, .left-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .right-column .section-title, .left-column .section-title {
        text-align: center;
    }
    
    .left-column-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .other-inputs-container {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile screens - layout change: calculate price under google bonuses */
@media (max-width: 480px) {
    .header {
        padding: 10px 20px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .buy-text {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .youtube-icon {
        width: 200px;
        height: 200px;
    }
    
    .main-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        align-items: center;
    }
    
    /* Reorder sections for mobile: Google bonuses first, then calculate price */
    .main-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .right-column {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .left-column {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    /* Center the section titles */
    .right-column .section-title, .left-column .section-title {
        text-align: center;
    }
    
    /* Center the price calculation inputs */
    .left-column-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .other-inputs-container {
        align-items: flex-start !important; /* Match large screen behavior */
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: calc(100vw - 30px) !important; /* Gradual scaling for smaller screens */
    }
    
    /* Proportional scaling for all elements */
    .menu-icon, .avatar-icon {
        width: 60px;
        height: 60px;
    }
    
    .price-input.daily {
        width: 140px;
        height: 49px;
        font-size: 20px;
        align-self: flex-start !important; /* Match large screen behavior */
    }
    
    .price-input.other {
        width: calc(100vw - 50px) !important; /* Gradual scaling to match container */
        max-width: calc(100vw - 50px) !important;
        height: 49px;
        font-size: 18px;
        align-self: flex-start !important; /* Match large screen behavior */
    }
    
    .bonus-card {
        width: 220px; /* Proportionally increased for mobile */
        height: 189px; /* Proportionally increased for mobile */
        margin-bottom: 15px; /* Consistent spacing for all cards */
        margin-left: auto;
        margin-right: auto;
        padding: 16px; /* Proportionally increased padding */
    }
    
    .bonus-card:last-child {
        margin-bottom: 0; /* Remove bottom margin from last card */
    }
    
    .bonus-amount {
        font-size: 33px; /* Proportionally increased font size */
        margin-bottom: 4px; /* Adjusted spacing */
    }
    
    .bonus-credits {
        font-size: 20px; /* Proportionally increased font size */
        margin-bottom: 7px; /* Adjusted spacing */
    }
    
    .bonus-description {
        font-size: 16px; /* Proportionally increased font size */
        line-height: 1.2; /* Adjusted line height */
    }
    
    
    .buy-button {
        font-size: 20px;
        width: 180px; /* Proportionally reduced from original */
        height: 45px; /* Proportionally reduced from original */
        padding: 8px 18px;
    }
    
    .daily-label {
        font-size: 14px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .header {
        padding: 8px 15px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .buy-text {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .youtube-icon {
        width: 150px;
        height: 150px;
    }
    
    .main-content {
        padding: 0 15px;
        align-items: center;
    }
    
    /* Ensure both sections are centered */
    .right-column, .left-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .right-column .section-title, .left-column .section-title {
        text-align: center;
    }
    
    .left-column-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .other-inputs-container {
        align-items: flex-start !important; /* Match large screen behavior */
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: calc(100vw - 20px) !important; /* Gradual scaling for very small screens */
    }
    
    /* Proportional scaling for all elements */
    .menu-icon, .avatar-icon {
        width: 50px;
        height: 50px;
    }
    
    .price-input.daily {
        width: 120px;
        height: 42px;
        font-size: 18px;
        align-self: flex-start !important; /* Match large screen behavior */
    }
    
    .price-input.other {
        width: calc(100vw - 40px) !important; /* Gradual scaling to match container */
        max-width: calc(100vw - 40px) !important;
        height: 42px;
        font-size: 16px;
        align-self: flex-start !important; /* Match large screen behavior */
    }
    
    .bonus-card {
        width: 200px; /* Proportionally increased for very small screens */
        height: 172px; /* Proportionally increased for very small screens */
        margin-bottom: 15px; /* Consistent spacing for all cards */
        padding: 15px; /* Proportionally increased padding */
    }
    
    .bonus-card:last-child {
        margin-bottom: 0; /* Remove bottom margin from last card */
    }
    
    .bonus-amount {
        font-size: 30px; /* Proportionally increased font size */
        margin-bottom: 3px; /* Adjusted spacing */
    }
    
    .bonus-credits {
        font-size: 18px; /* Proportionally increased font size */
        margin-bottom: 6px; /* Adjusted spacing */
    }
    
    .bonus-description {
        font-size: 15px; /* Proportionally increased font size */
        line-height: 1.1; /* Adjusted line height */
    }
    
    
    .buy-button {
        font-size: 18px;
        width: 160px; /* Proportionally reduced from original */
        height: 40px; /* Proportionally reduced from original */
        padding: 7px 16px;
    }
    
    .daily-label {
        font-size: 12px;
    }
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 20px;
    left: -420px;
    width: 420px;
    height: 609px;
    background-color: #FE6969;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    border-radius: 20px;
}

/* Proportionally reduce menu elements for screens less than 500px */
@media (max-width: 500px) {
    .side-menu {
        width: 350px; /* Proportionally reduced from 420px (17% smaller) */
        height: 500px; /* Proportionally reduced from 609px (18% smaller) */
        top: 15px; /* Slightly reduced from 20px */
        left: -350px; /* Adjusted for new width */
        border-radius: 16px; /* Proportionally reduced from 20px */
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Proportionally reduced shadow */
    }
    
    .side-menu.open {
        left: 15px; /* Adjusted for new width */
    }
    
    .menu-header {
        padding: 24px; /* Proportionally reduced from 30px (20% smaller) */
    }
    
    .white-menu-icon {
        width: 80px !important; /* Proportionally reduced from 100px (20% smaller) */
        height: 80px !important; /* Proportionally reduced from 100px (20% smaller) */
    }
    
    .white-menu-icon:hover {
        transform: scale(1.05); /* Maintained hover effect */
    }
    
    .menu-items {
        padding: 16px 0; /* Proportionally reduced from 20px 0 (20% smaller) */
    }
    
    .menu-item {
        height: 64px; /* Proportionally reduced from 80px (20% smaller) */
        font-size: 32px !important; /* Proportionally reduced from 40px (20% smaller) */
        margin: 0 3px; /* Proportionally reduced from 4px */
        border-radius: 16px; /* Proportionally reduced from 20px */
    }
    
    .menu-item[data-page="main"] {
        font-size: 32px !important; /* Proportionally reduced from 40px (20% smaller) */
    }
    
    .menu-item[data-page="about"] {
        font-size: 32px !important; /* Proportionally reduced from 40px (20% smaller) */
    }
    
    .menu-item[data-page="faq"] {
        font-size: 24px !important; /* Proportionally reduced from 30px (20% smaller) */
    }
    
    .menu-item[data-page="contact"] {
        font-size: 32px !important; /* Proportionally reduced from 40px (20% smaller) */
    }
    
    .menu-item:hover,
    .menu-item.hover {
        margin: 0 3px; /* Proportionally reduced from 4px */
        border-radius: 16px; /* Proportionally reduced from 20px */
        width: calc(100% - 6px); /* Adjusted for new margin */
    }
    
    .menu-item.active {
        margin: 0 3px; /* Proportionally reduced from 4px */
        border-radius: 16px; /* Proportionally reduced from 20px */
        width: calc(100% - 6px); /* Adjusted for new margin */
    }
}

/* Increase menu a bit for screens 400px and less, ensure nothing goes beyond */
@media (max-width: 400px) {
    .side-menu {
        width: 320px; /* Further increased from 300px */
        height: 480px; /* Further increased height to ensure nothing goes beyond */
        top: 12px; /* Further reduced from 15px */
        left: -320px; /* Adjusted for new width */
        border-radius: 14px; /* Slightly increased from 13px */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Further reduced shadow */
    }
    
    .side-menu.open {
        left: 12px; /* Adjusted for new width */
    }
    
    .menu-header {
        padding: 22px; /* Increased from 19px */
    }
    
    .white-menu-icon {
        width: 70px !important; /* Increased from 64px */
        height: 70px !important; /* Increased from 64px */
    }
    
    .white-menu-icon:hover {
        transform: scale(1.05); /* Maintained hover effect */
    }
    
    .menu-items {
        padding: 15px 0; /* Increased from 13px 0 */
    }
    
    .menu-item {
        height: 55px; /* Increased from 51px */
        font-size: 28px !important; /* Increased from 26px */
        margin: 0 3px; /* Increased from 2px */
        border-radius: 14px; /* Increased from 13px */
    }
    
    .menu-item[data-page="main"] {
        font-size: 28px !important; /* Increased from 26px */
    }
    
    .menu-item[data-page="about"] {
        font-size: 28px !important; /* Increased from 26px */
    }
    
    .menu-item[data-page="faq"] {
        font-size: 21px !important; /* Increased from 19px */
    }
    
    .menu-item[data-page="contact"] {
        font-size: 28px !important; /* Increased from 26px */
    }
    
    .menu-item:hover,
    .menu-item.hover {
        margin: 0 3px; /* Increased from 2px */
        border-radius: 14px; /* Increased from 13px */
        width: calc(100% - 6px); /* Adjusted for new margin */
    }
    
    .menu-item.active {
        margin: 0 3px; /* Increased from 2px */
        border-radius: 14px; /* Increased from 13px */
        width: calc(100% - 6px); /* Adjusted for new margin */
    }
}

/* Further reduce whole menu for screens 360px and less */
@media (max-width: 360px) {
    .side-menu {
        width: 300px; /* Increased from 260px to fit texts */
        height: 470px; /* Increased from 390px to fit all content */
        top: 10px; /* Further reduced from 12px */
        left: -300px; /* Adjusted for new width */
        border-radius: 11px; /* Further reduced from 14px */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Further reduced shadow */
    }
    
    .side-menu.open {
        left: 10px; /* Adjusted for new width */
    }
    
    .menu-header {
        padding: 18px; /* Further reduced from 22px (18% smaller) */
    }
    
    .white-menu-icon {
        width: 56px !important; /* Further reduced from 70px (20% smaller) */
        height: 56px !important; /* Further reduced from 70px (20% smaller) */
    }
    
    .white-menu-icon:hover {
        transform: scale(1.05); /* Maintained hover effect */
    }
    
    .menu-items {
        padding: 12px 0; /* Further reduced from 15px 0 (20% smaller) */
    }
    
    .menu-item {
        height: 44px; /* Further reduced from 55px (20% smaller) */
        font-size: 22px !important; /* Further reduced from 28px (21% smaller) */
        margin: 0 2px; /* Further reduced from 3px */
        border-radius: 11px; /* Further reduced from 14px */
    }
    
    .menu-item[data-page="main"] {
        font-size: 22px !important; /* Further reduced from 28px (21% smaller) */
    }
    
    .menu-item[data-page="about"] {
        font-size: 22px !important; /* Further reduced from 28px (21% smaller) */
    }
    
    .menu-item[data-page="faq"] {
        font-size: 17px !important; /* Further reduced from 21px (19% smaller) */
    }
    
    .menu-item[data-page="contact"] {
        font-size: 22px !important; /* Further reduced from 28px (21% smaller) */
    }
    
    .menu-item:hover,
    .menu-item.hover {
        margin: 0 2px; /* Further reduced from 3px */
        border-radius: 11px; /* Further reduced from 14px */
        width: calc(100% - 4px); /* Adjusted for new margin */
    }
    
    .menu-item.active {
        margin: 0 2px; /* Further reduced from 3px */
        border-radius: 11px; /* Further reduced from 14px */
        width: calc(100% - 4px); /* Adjusted for new margin */
    }
}

.side-menu.open {
    left: 20px;
}

.menu-header {
    padding: 30px;
    text-align: left;
}

.white-menu-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.white-menu-icon:hover {
    transform: scale(1.05);
}

.menu-items {
    padding: 20px 0;
}

.menu-item {
    width: 100%;
    height: 80px;
    background: none;
    border: none;
    color: #FFE9E9;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.menu-item[data-page="main"] {
    font-size: 40px;
}

.menu-item[data-page="about"] {
    font-size: 40px;
}

.menu-item[data-page="faq"] {
    font-size: 30px;
    white-space: nowrap;
}

.menu-item[data-page="contact"] {
    font-size: 40px;
}

.menu-item:hover,
.menu-item.hover {
    background-color: #FFE9E9;
    color: #FE6969;
    margin: 0 4px;
    border-radius: 20px;
    width: calc(100% - 8px);
}

.menu-item.active {
    background-color: #FFE9E9;
    color: #FE6969;
    margin: 0 4px;
    border-radius: 20px;
    width: calc(100% - 8px);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* About Us Page */
.about-title {
    font-size: 96px;
    color: #FF0000;
    text-align: center;
    margin: 1px 0;
    font-weight: 400;
}

.about-content {
    padding: 0 200px;
    margin-bottom: 40px;
}

.about-text {
    max-width: 1300px;
    margin: 0 auto;
}

.about-text p {
    font-size: 32px;
    color: #FE6969;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: left;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Responsive design for About page - similar to main page */
@media (max-width: 1400px) {
    .about-title {
        font-size: 80px;
    }
    
    .about-content {
        padding: 0 150px;
    }
    
    .about-text p {
        font-size: 28px;
    }
}

@media (max-width: 1200px) {
    .about-title {
        font-size: 72px;
    }
    
    .about-content {
        padding: 0 100px;
    }
    
    .about-text p {
        font-size: 26px;
    }
}

@media (max-width: 1024px) {
    .about-title {
        font-size: 64px;
    }
    
    .about-content {
        padding: 0 80px;
    }
    
    .about-text p {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 48px;
    }
    
    .about-content {
        padding: 0 50px;
    }
    
    .about-text p {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 36px;
    }
    
    .about-content {
        padding: 0 30px;
    }
    
    .about-text p {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .about-title {
        font-size: 28px;
    }
    
    .about-content {
        padding: 0 20px;
    }
    
    .about-text p {
        font-size: 16px;
        margin-bottom: 18px;
        line-height: 1.3;
    }
}

/* FAQ Page */
.faq-title {
    font-size: 64px;
    color: #FF0000;
    text-align: center;
    margin: 1px 0;
    font-weight: 400;
}

.header:has(.faq-title) .faq-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.faq-content {
    padding: 0 200px;
    margin-bottom: 40px;
    margin-top: 60px;
}

.faq-items {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.faq-item {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    padding-bottom: 30px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    transform: translateX(10px);
}

.plus-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.question-text {
    font-size: 57px;
    color: #FF0000;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.faq-item:nth-child(2) .question-text {
    font-size: 40px;
    white-space: normal;
}

.faq-item:nth-child(3) .question-text {
    font-size: 48px;
    white-space: nowrap;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 20px;
    padding-left: 120px;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    font-size: 20px;
    color: #FE6969;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-question {
    font-size: 64px;
    color: #FF0000;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-button {
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 422px;
}

/* Responsive design for FAQ page - comprehensive optimization */
@media (min-width: 601px) {
    .faq-title {
        white-space: nowrap;
    }
}

@media (max-width: 1600px) {
    .faq-title {
        font-size: 52px; /* Further reduced from 58px for large screens */
    }
}

@media (max-width: 1400px) {
    .faq-title {
        font-size: 44px; /* Further reduced from 50px */
    }
    
    .faq-content {
        padding: 0 150px;
        margin-top: 50px;
    }
    
    .faq-items {
        max-width: 900px;
        margin: 0 auto 50px;
    }
    
    .faq-item {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }
    
    .faq-question {
        gap: 18px;
    }
    
    .plus-icon {
        width: 90px;
        height: 90px;
    }
    
    .question-text {
        font-size: 50px;
    }
    
    .faq-item:nth-child(2) .question-text {
        font-size: 36px;
    }
    
    .faq-item:nth-child(3) .question-text {
        font-size: 42px;
    }
    
    .faq-answer {
        margin-top: 18px;
        padding-left: 108px;
    }
    
    .faq-answer p {
        font-size: 18px;
    }
    
    .faq-cta {
        margin-top: 50px;
    }
    
    .cta-question {
        font-size: 56px;
        margin-bottom: 35px;
    }
    
    .cta-button {
        font-size: 36px;
        width: 380px;
    }
}

@media (max-width: 1200px) {
    .faq-title {
        font-size: 40px; /* Reduced from 48px */
    }
    
    .faq-content {
        padding: 0 100px;
        margin-top: 40px;
    }
    
    .faq-items {
        max-width: 800px;
        margin: 0 auto 40px;
    }
    
    .faq-item {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .faq-question {
        gap: 15px;
    }
    
    .plus-icon {
        width: 80px;
        height: 80px;
    }
    
    .question-text {
        font-size: 42px;
    }
    
    .faq-item:nth-child(2) .question-text {
        font-size: 32px;
    }
    
    .faq-item:nth-child(3) .question-text {
        font-size: 36px;
    }
    
    .faq-answer {
        margin-top: 15px;
        padding-left: 95px;
    }
    
    .faq-answer p {
        font-size: 16px;
    }
    
    .faq-cta {
        margin-top: 40px;
    }
    
    .cta-question {
        font-size: 48px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        font-size: 32px;
        width: 340px;
        height: 50px; /* Increased height for 1200px and less */
    }
}

@media (max-width: 1024px) {
    .faq-title {
        font-size: 34px; /* Reduced from 40px */
    }
    
    .faq-content {
        padding: 0 80px;
        margin-top: 35px;
    }
    
    .faq-items {
        max-width: 700px;
        margin: 0 auto 35px;
    }
    
    .faq-item {
        margin-bottom: 25px;
        padding-bottom: 18px;
    }
    
    .faq-question {
        gap: 12px;
    }
    
    .plus-icon {
        width: 70px;
        height: 70px;
    }
    
    .question-text {
        font-size: 36px;
    }
    
    .faq-item:nth-child(2) .question-text {
        font-size: 28px;
    }
    
    .faq-item:nth-child(3) .question-text {
        font-size: 32px;
    }
    
    .faq-answer {
        margin-top: 12px;
        padding-left: 82px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-cta {
        margin-top: 35px;
    }
    
    .cta-question {
        font-size: 40px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        font-size: 28px;
        width: 300px;
        height: 45px; /* Increased height for 1024px and less */
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 28px; /* Reduced from 32px */
    }
    
    .faq-content {
        padding: 0 50px;
        margin-top: 30px;
    }
    
    .faq-items {
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .faq-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .faq-question {
        gap: 10px;
    }
    
    .plus-icon {
        width: 60px;
        height: 60px;
    }
    
    .question-text {
        font-size: 30px;
    }
    
    .faq-item:nth-child(2) .question-text {
        font-size: 24px;
    }
    
    .faq-item:nth-child(3) .question-text {
        font-size: 28px;
    }
    
    .faq-answer {
        margin-top: 10px;
        padding-left: 70px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .faq-cta {
        margin-top: 30px;
    }
    
    .cta-question {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        font-size: 24px;
        width: 260px;
        height: 40px; /* Increased height for 768px and less */
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 24px; /* Reduced from 28px */
    }
    
    .faq-content {
        padding: 0 30px;
        margin-top: 25px;
    }
    
    .faq-items {
        max-width: 100%;
        margin: 0 auto 25px;
    }
    
    .faq-item {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .faq-question {
        gap: 8px;
    }
    
    .plus-icon {
        width: 50px;
        height: 50px;
    }
    
    .question-text {
        font-size: 24px;
    }
    
    .faq-item:nth-child(2) .question-text {
        font-size: 20px;
    }
    
    .faq-item:nth-child(3) .question-text {
        font-size: 22px;
    }
    
    .faq-answer {
        margin-top: 8px;
        padding-left: 58px;
    }
    
    .faq-answer p {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .faq-cta {
        margin-top: 25px;
    }
    
    .cta-question {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .cta-button {
        font-size: 20px;
        width: 220px;
        height: 35px; /* Increased height for 480px and less */
    }
}

@media (max-width: 840px) {
    .question-text {
        white-space: normal !important;
        word-wrap: break-word;
    }
    
    .faq-item:nth-child(1) .question-text {
        white-space: normal !important;
    }
    
    .faq-item:nth-child(3) .question-text {
        white-space: normal !important;
    }
}



@media (max-width: 600px) and (min-width: 361px) {
    .faq-title {
        width: 90vw; /* Increased width for small screens */
        max-width: 340px; /* Maximum width to prevent it from being too wide */
        padding: 10px 20px; /* Add some padding for better appearance */
        box-sizing: border-box;
    }
}

@media (max-width: 480px) and (min-width: 361px) {
    .faq-title {
        margin-left: 20px; /* Reduced from 60px to move title more to the left */
        margin-right: 20px; /* Add right margin for balance */
        width: calc(100vw - 60px); /* Adjust width to account for reduced margins */
        max-width: calc(100vw - 60px);
    }
}

@media (max-width: 360px) {
    .faq-title {
        font-size: 20px; /* Reduced from 24px */
    }
    
    .faq-content {
        padding: 0 20px;
        margin-top: 20px;
    }
    
    .faq-items {
        margin: 0 auto 20px;
    }
    
    .faq-item {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .faq-question {
        gap: 6px;
    }
    
    .plus-icon {
        width: 40px;
        height: 40px;
    }
    
    .question-text {
        font-size: 20px;
    }
    
    .faq-item:nth-child(2) .question-text {
        font-size: 18px;
    }
    
    .faq-item:nth-child(3) .question-text {
        font-size: 19px;
    }
    
    .faq-answer {
        margin-top: 6px;
        padding-left: 46px;
    }
    
    .faq-answer p {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .faq-cta {
        margin-top: 20px;
    }
    
    .cta-question {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .cta-button {
        font-size: 18px;
        width: 180px;
        height: 30px; /* Increased height for 360px and less */
    }
}

.cta-button:hover {
    background-color: #B00707;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Contact Page */
.contact-title {
    font-size: 64px;
    color: #FF0000;
    text-align: center;
    margin: 1px 0;
    font-weight: 400;
}

.header:has(.contact-title) .contact-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.contact-content {
    padding: 0 200px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-subtitle {
    font-size: 36px;
    color: #FE6969;
    text-align: center;
    margin-bottom: 5px;
    position: relative;
    top: -25px;
    font-weight: 400;
    max-width: 800px;
    line-height: 1.3;
}

.chat-container {
    background-color: #FE6969;
    width: 468px;
    min-height: 681px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 20px;
    background-color: transparent;
    min-height: 610px;
    transition: min-height 0.3s ease;
}

.chat-messages.has-content {
    min-height: 560px;
}

.chat-input-area {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: transparent;
    border-radius: 20px;
    padding: 10px 15px;
    width: 394px;
    min-height: 48px;
    height: auto;
    position: absolute;
    bottom: 0px;
    left: -25px;
    transition: transform 0.3s ease;
}

.chat-input-area:hover {
    transform: scale(1.02);
}

.chat-input {
    width: 394px;
    height: 48px;
    border: none;
    background-color: #D9D9D9;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #FFFFFF;
    outline: none;
    resize: none;
    overflow-y: hidden;
    word-wrap: break-word;
    white-space: pre-wrap;
    line-height: 48px;
    padding: 0 15px;
    margin: 0;
}

.chat-input::placeholder {
    color: #FFFFFF;
    opacity: 0.8;
}

/* Responsive design for Contact page - comprehensive optimization */
@media (max-width: 1600px) {
    .contact-title {
        font-size: 58px; /* Reduced from 64px for large screens */
    }
}

@media (max-width: 1400px) {
    .contact-title {
        font-size: 52px; /* Reduced from 58px */
    }
    
    .contact-content {
        padding: 0 150px;
        margin-top: 20px;
    }
    
    .contact-subtitle {
        font-size: 32px; /* Reduced from 36px */
        margin-bottom: 5px;
        top: -20px; /* Adjusted from -25px */
    }
}

@media (max-width: 1200px) {
    .contact-title {
        font-size: 46px; /* Reduced from 52px */
    }
    
    .contact-content {
        padding: 0 100px;
        margin-top: 25px;
    }
    
    .contact-subtitle {
        font-size: 28px; /* Reduced from 32px */
        margin-bottom: 5px;
        top: -15px; /* Adjusted from -20px */
    }
    
    .chat-container {
        width: 85vw; /* Proportional width based on viewport */
        max-width: 400px; /* Maximum width constraint */
        min-height: 70vh; /* Increased height for better appearance */
        max-height: 700px; /* Increased maximum height */
    }
    
    .chat-input {
        width: calc(85vw - 100px); /* Proportional width minus space for icons */
        max-width: 340px; /* Maximum width constraint */
        height: 44px; /* Reduced from 48px */
    }
    
    .chat-input::placeholder {
        font-size: 22px; /* Reduced placeholder text for 1200px and less */
    }
    
    .send-icon {
        width: 45px !important; /* Reduced from 50px */
        height: 45px !important; /* Reduced from 50px */
        right: 2px !important; /* Move send icon to the right */
    }
    
    .file-icon-container {
        width: 32px !important; /* Reduced from 35px */
        height: 32px !important; /* Reduced from 35px */
    }
    
    .file-icon-container.moved {
        right: -32px !important; /* Adjusted for new width */
        bottom: 65px !important; /* Adjusted for new height */
    }
    
    .file-icon-moved-container {
        width: 45px !important; /* Reduced from 50px */
        height: 45px !important; /* Reduced from 50px */
    }
    
    .chat-input-area {
        gap: 12px; /* Reduced from 15px */
    }
    
    .message-bubble {
        max-width: 75%; /* Proportional to chat container */
        padding: 10px 14px; /* Proportional padding */
    }
}

@media (max-width: 1024px) {
    .contact-title {
        font-size: 40px; /* Reduced from 46px */
    }
    
    .contact-content {
        padding: 0 80px;
        margin-top: 30px;
    }
    
    .contact-subtitle {
        font-size: 24px; /* Reduced from 28px */
        margin-bottom: 5px;
        top: -10px; /* Adjusted from -15px */
    }
    
    .chat-container {
        width: 90vw; /* Proportional width based on viewport */
        max-width: 350px; /* Maximum width constraint */
        min-height: 75vh; /* Reverted to original height */
        max-height: 650px; /* Reverted to original maximum height */
    }
    
    .chat-input {
        width: calc(90vw - 90px); /* Proportional width minus space for icons */
        max-width: 300px; /* Maximum width constraint */
        height: 42px; /* Reduced from 44px */
    }
    
    .chat-input::placeholder {
        font-size: 20px; /* Further reduced placeholder text for 1024px and less */
    }
    
    .send-icon {
        width: 37px !important; /* Further reduced from 40px for 769px-1024px range */
        height: 37px !important; /* Further reduced from 40px for 769px-1024px range */
    }
    
    .file-icon-container {
        width: 28px !important; /* Reduced from 32px */
        height: 28px !important; /* Reduced from 32px */
        right: 45px !important; /* Move file icon to the right */
    }
    
    .file-icon-container.moved {
        right: -28px !important; /* Adjusted for new width */
        bottom: 60px !important; /* Adjusted for new height */
    }
    
    .file-icon-moved-container {
        width: 40px !important; /* Reduced from 45px */
        height: 40px !important; /* Reduced from 45px */
    }
    
    .chat-input-area {
        gap: 10px; /* Reduced from 12px */
    }
    
    .message-bubble {
        max-width: 80%; /* Proportional to chat container */
        padding: 10px 14px; /* Proportional padding */
    }
    
    .chat-messages {
        min-height: 650px; /* Increased height for chat messages area */
        max-height: 650px; /* Set maximum height for scrollable area */
    }
    
    .message-content {
        font-size: 13px; /* Reduced from 14px */
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 34px; /* Reduced from 40px */
        white-space: nowrap; /* Keep title in one line for 768px and less */
    }
    
    .contact-content {
        padding: 0 50px;
        margin-top: 35px;
    }
    
    .contact-subtitle {
        font-size: 20px; /* Reduced from 24px */
        margin-bottom: 5px;
        top: -20px; /* Moved up for 768px and less */
    }
    
    .chat-container {
        width: 95vw; /* Proportional width based on viewport */
        min-height: 75vh; /* Increased height for 768px-481px range */
        max-height: 550px; /* Increased maximum height for 768px-481px range */
        margin: 0 auto; /* Center the container */
    }
    
    .chat-input {
        width: calc(95vw - 80px); /* Proportional width minus space for icons */
        height: 40px; /* Reduced from 42px */
    }
    
    .chat-input::placeholder {
        font-size: 18px; /* Further reduced placeholder text for 768px and less */
    }
    
    .send-icon {
        width: 35px !important; /* Reduced from 40px */
        height: 35px !important; /* Reduced from 40px */
    }
    
    .file-icon-container {
        width: 25px !important; /* Reduced from 28px */
        height: 25px !important; /* Reduced from 28px */
    }
    
    .file-icon-container.moved {
        right: -25px !important; /* Adjusted for new width */
        bottom: 55px !important; /* Adjusted for new height */
    }
    
    .file-icon-moved-container {
        width: 35px !important; /* Reduced from 40px */
        height: 35px !important; /* Reduced from 40px */
    }
    
    .chat-input-area {
        gap: 8px; /* Reduced from 10px */
    }
    
    .message-bubble {
        max-width: 85%; /* Proportional to chat container */
        padding: 8px 12px; /* Proportional padding */
    }
    
    .message-content {
        font-size: 12px; /* Reduced from 13px */
    }
    
    .message-sender {
        font-size: 12px; /* Reduced font size */
    }
    
    .message-time {
        font-size: 10px; /* Reduced from 11px */
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 28px; /* Reduced from 34px */
        white-space: nowrap; /* Keep title in one line for 480px and less */
    }
    
    .contact-content {
        padding: 0 30px;
        margin-top: 40px;
    }
    
    .contact-subtitle {
        font-size: 18px; /* Reduced from 20px */
        margin-bottom: 5px;
        top: -20px; /* Moved up for 480px and less */
    }
    
    .chat-container {
        width: 98vw; /* Proportional width based on viewport */
        min-height: 75vh; /* Proportional height based on viewport */
        max-height: 450px; /* Maximum height constraint */
        margin: 0 auto; /* Center the container */
    }
    
    .chat-input {
        width: calc(98vw - 70px); /* Proportional width minus space for icons */
        height: 38px; /* Reduced from 40px */
        font-size: 14px; /* Reduced font size */
        line-height: 38px; /* Match height to vertically center placeholder */
        padding-top: 0; /* Remove top padding to move text up */
        padding-bottom: 0; /* Remove bottom padding */
    }
    
    .chat-input::placeholder {
        font-size: 20px; /* Further reduced placeholder text for 480px and less */
    }
    
    .send-icon {
        width: 32px !important; /* Reduced from 35px */
        height: 32px !important; /* Reduced from 35px */
    }
    
    .file-icon-container {
        width: 22px !important; /* Reduced from 25px */
        height: 22px !important; /* Reduced from 25px */
    }
    
    .file-icon-container.moved {
        right: -22px !important; /* Adjusted for new width */
        bottom: 50px !important; /* Adjusted for new height */
    }
    
    .file-icon-moved-container {
        width: 32px !important; /* Reduced from 35px */
        height: 32px !important; /* Reduced from 35px */
    }
    
    .chat-input-area {
        gap: 6px; /* Reduced from 8px */
    }
    
    .message-bubble {
        max-width: 90%; /* Proportional to chat container */
        padding: 6px 10px; /* Proportional padding */
    }
    
    .message-content {
        font-size: 11px; /* Reduced from 12px */
    }
    
    .message-sender {
        font-size: 11px; /* Reduced from 12px */
    }
    
    .message-time {
        font-size: 9px; /* Reduced from 10px */
    }
}

@media (max-width: 385px) {
    .chat-container {
        width: calc(100vw - 20px) !important; /* Full viewport width minus fixed right margin */
        min-height: 75vh !important; /* Increased height for 385px and less */
        max-height: 400px !important; /* Increased max height for 385px and less */
        margin: 0 auto 0 -15px !important; /* Center vertically, fixed 10px from left edge */
    }
    
    .chat-input {
        width: calc(100vw - 50px); /* Reduced space for icons */
        height: 34px; /* Reduced height */
        font-size: 12px; /* Smaller font */
        line-height: 34px; /* Match height to vertically center placeholder */
        padding-top: 0; /* Remove top padding to move text up */
        padding-bottom: 0; /* Remove bottom padding */
    }
    
    .send-icon {
        width: 28px !important; /* Smaller send icon */
        height: 28px !important;
    }
    
    .file-icon-container {
        width: 18px !important; /* Smaller file icon */
        height: 18px !important;
    }
    
    .file-icon-container.moved {
        right: -18px !important; /* Adjusted positioning */
        bottom: 40px !important;
    }
    
    .file-icon-moved-container {
        width: 28px !important; /* Smaller moved file icon */
        height: 28px !important;
    }
    
    .chat-input-area {
        gap: 4px; /* Reduced gap */
    }
    
    .message-bubble {
        max-width: 95%; /* Maximum width */
        padding: 4px 6px; /* Minimal padding */
    }
    
    .message-content {
        font-size: 9px; /* Very small text */
    }
    
    .message-sender {
        font-size: 9px; /* Very small sender text */
    }
    
    .message-time {
        font-size: 7px; /* Very small time text */
    }
}

@media (max-width: 360px) {
    .contact-title {
        font-size: 24px; /* Reduced from 28px */
    }
    
    .contact-content {
        padding: 0 20px;
        margin-top: 45px;
    }
    
    .contact-subtitle {
        font-size: 16px; /* Reduced from 18px */
        margin-bottom: 5px;
        top: -5px; /* Moved up for 360px and less */
    }
    
    .chat-container {
        width: 100vw; /* Full viewport width for very small screens */
        min-height: 80vh; /* Proportional height based on viewport */
        max-height: 400px; /* Maximum height constraint */
        margin: 0 auto; /* Center the container */
    }
    
    .chat-input {
        width: calc(100vw - 60px); /* Full width minus space for icons */
        height: 36px; /* Reduced from 38px */
        font-size: 13px; /* Reduced from 14px */
        line-height: 36px; /* Match height to vertically center placeholder */
        padding-top: 0; /* Remove top padding to move text up */
        padding-bottom: 0; /* Remove bottom padding */
    }
    
    .send-icon {
        width: 30px !important; /* Reduced from 32px */
        height: 30px !important; /* Reduced from 32px */
    }
    
    .file-icon-container {
        width: 20px !important; /* Reduced from 22px */
        height: 20px !important; /* Reduced from 22px */
    }
    
    .file-icon-container.moved {
        right: -20px !important; /* Adjusted for new width */
        bottom: 45px !important; /* Adjusted for new height */
    }
    
    .file-icon-moved-container {
        width: 30px !important; /* Reduced from 32px */
        height: 30px !important; /* Reduced from 32px */
    }
    
    .chat-input-area {
        gap: 5px; /* Reduced from 6px */
    }
    
    .message-bubble {
        max-width: 95%; /* Proportional to chat container */
        padding: 5px 8px; /* Proportional padding */
    }
    
    .message-content {
        font-size: 10px; /* Reduced from 11px */
    }
    
    .message-sender {
        font-size: 10px; /* Reduced from 11px */
    }
    
    .message-time {
        font-size: 8px; /* Reduced from 9px */
    }
}

/* Admin page specific chat input styling */
.chat-panel .chat-input {
    background-color: #D9D9D9;
    color: #333333;
    border: none;
    border-radius: 15px;
    padding: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    resize: none;
    outline: none;
    min-height: 50px;
    max-height: 120px;
    flex: 1;
}

/* Modern Messenger Message Styles */
.message-bubble {
    max-width: 80%;
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;

}



.message-bubble.user {
    background-color: #D9D9D9;
    color: #FFFFFF;
    margin-left: auto;
    border-bottom-right-radius: 6px;
}

.message-bubble.admin {
    background-color: #D9D9D9;
    color: #FFFFFF;
    margin-right: auto;
    border-bottom-left-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}



.message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 12px;
}

.message-sender {
    font-weight: 600;
    color: inherit;
    opacity: 0.9;
}

.message-time {
    opacity: 0.7;
    font-size: 11px;
}

.message-content {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.message-status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    margin-top: 4px;
    flex-direction: row;
}

.status-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    animation: none !important;
    transition: none !important;
}

.status-icon.sent {
    opacity: 0.4;
    animation: none !important;
    transition: none !important;
}

.status-icon.delivered {
    opacity: 0.6;
    animation: none !important;
    transition: none !important;
}

.status-icon.read {
    opacity: 0.8;
    animation: none !important;
    transition: none !important;
}



.file-icon-container {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.file-icon-container.moved {
    right: -35px;
    bottom: 70px;
    top: auto;
    transform: none;
}

.file-icon-moved-container {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 13px;
    bottom: 70px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.file-icon-moved-container.visible {
    opacity: 1;
    visibility: visible;
}

.file-icon-moved {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.file-icon-moved:hover {
    transform: scale(1.1);
}

.file-icon {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.file-icon:hover {
    transform: scale(1.1);
}



.send-icon {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    right: 5px;
    bottom: 15px;
}

.send-icon:hover {
    transform: scale(1.1);
}

/* Delete message button */
.delete-message-btn {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    right: 10px;
    top: 30px;
    opacity: 0.7;
    color: #FFFFFF;
    background: none;
    border: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.delete-message-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.message-bubble {
    position: relative;
}

/* Email Confirmation Page */
.email-confirm-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* Responsive design for Email-confirm page - starting from 950px and below */
@media (max-width: 950px) {
    .email-confirm-title {
        font-size: 48px !important; /* Reduced from 64px */
        margin-bottom: 45px !important; /* Reduced from 60px */
    }
    
    .code-inputs-container {
        gap: 10px !important; /* Reduced from 20px */
        margin-bottom: 45px !important; /* Reduced from 60px */
    }
    
    .code-input {
        width: 80px !important; /* Reduced from 132px */
        height: 100px !important; /* Reduced from 175px */
        font-size: 28px !important; /* Reduced from 48px */
    }
    
    .email-confirm-buttons {
        gap: 15px !important; /* Reduced from 20px */
    }
    
    .confirm-button {
        width: 250px !important; /* Reduced from 335px */
        height: 46px !important; /* Reduced from 62px */
        font-size: 30px !important; /* Reduced from 40px */
    }
    
    .resend-button {
        width: 190px !important; /* Reduced from 250px */
        height: 30px !important; /* Reduced from 39px */
        font-size: 18px !important; /* Reduced from 24px */
    }
}

@media (max-width: 768px) {
    .email-confirm-title {
        font-size: 42px !important; /* Reduced from 48px */
        margin-bottom: 40px !important; /* Reduced from 45px */
    }
    
    .code-inputs-container {
        gap: 8px !important; /* Reduced from 10px */
        margin-bottom: 40px !important; /* Reduced from 45px */
    }
    
    .code-input {
        width: 70px !important; /* Reduced from 80px */
        height: 90px !important; /* Reduced from 100px */
        font-size: 24px !important; /* Reduced from 28px */
    }
    
    .email-confirm-buttons {
        gap: 12px !important; /* Reduced from 15px */
    }
    
    .confirm-button {
        width: 220px !important; /* Reduced from 250px */
        height: 42px !important; /* Reduced from 46px */
        font-size: 26px !important; /* Reduced from 30px */
    }
    
    .resend-button {
        width: 170px !important; /* Reduced from 190px */
        height: 28px !important; /* Reduced from 30px */
        font-size: 16px !important; /* Reduced from 18px */
    }
}

@media (max-width: 480px) {
    .email-confirm-title {
        font-size: 36px !important; /* Reduced from 48px */
        margin-bottom: 35px !important; /* Reduced from 45px */
    }
    
    .code-inputs-container {
        gap: 6px !important; /* Reduced from 12px */
        margin-bottom: 35px !important; /* Reduced from 45px */
    }
    
    .code-input {
        width: 60px !important; /* Reduced from 70px */
        height: 80px !important; /* Reduced from 90px */
        font-size: 20px !important; /* Reduced from 24px */
    }
    
    .email-confirm-buttons {
        gap: 12px !important; /* Reduced from 15px */
    }
    
    .confirm-button {
        width: 200px !important; /* Reduced from 250px */
        height: 38px !important; /* Reduced from 46px */
        font-size: 24px !important; /* Reduced from 30px */
    }
    
    .resend-button {
        width: 180px !important; /* Increased to fit text */
        height: 26px !important; /* Reduced from 30px */
        font-size: 16px !important; /* Reduced from 18px */
    }
}

@media (max-width: 400px) {
    .email-confirm-title {
        font-size: 32px !important; /* Reduced from 36px */
        margin-bottom: 30px !important; /* Reduced from 35px */
    }
    
    .code-inputs-container {
        gap: 5px !important; /* Reduced from 6px */
        margin-bottom: 30px !important; /* Reduced from 35px */
    }
    
    .code-input {
        width: 55px !important; /* Reduced from 60px */
        height: 75px !important; /* Reduced from 80px */
        font-size: 18px !important; /* Reduced from 20px */
    }
    
    .email-confirm-buttons {
        gap: 10px !important; /* Reduced from 12px */
    }
    
    .confirm-button {
        width: 180px !important; /* Reduced from 200px */
        height: 36px !important; /* Reduced from 38px */
        font-size: 22px !important; /* Reduced from 24px */
    }
    
    .resend-button {
        width: 170px !important; /* Increased to fit text */
        height: 24px !important; /* Reduced from 26px */
        font-size: 14px !important; /* Reduced from 16px */
    }
}

@media (max-width: 360px) {
    .email-confirm-title {
        font-size: 28px !important; /* Reduced from 36px */
        margin-bottom: 25px !important; /* Reduced from 35px */
    }
    
    .code-inputs-container {
        gap: 4px !important; /* Reduced from 10px */
        margin-bottom: 25px !important; /* Reduced from 35px */
    }
    
    .code-input {
        width: 50px !important; /* Reduced from 60px */
        height: 65px !important; /* Reduced from 80px */
        font-size: 16px !important; /* Reduced from 20px */
    }
    
    .email-confirm-buttons {
        gap: 10px !important; /* Reduced from 12px */
    }
    
    .confirm-button {
        width: 160px !important; /* Reduced from 200px */
        height: 32px !important; /* Reduced from 38px */
        font-size: 20px !important; /* Reduced from 24px */
    }
    
    .resend-button {
        width: 160px !important; /* Increased to fit text */
        height: 22px !important; /* Reduced from 26px */
        font-size: 14px !important; /* Reduced from 16px */
    }
}

.email-confirm-title {
    font-size: 64px;
    color: #FF0000;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.code-inputs-container {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.code-input {
    width: 132px;
    height: 175px;
    background-color: #FE6969;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #FFE9E9;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    outline: none;
}

.code-input:focus {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.code-input::placeholder {
    color: #FFE9E9;
}

.email-confirm-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.confirm-button {
    width: 335px;
    height: 62px;
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.confirm-button:hover {
    background-color: #B00707;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.resend-button {
    width: 250px;
    height: 39px;
    background-color: #8B0505;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.resend-button:hover {
    background-color: #6A0404;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Forgot Password Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-container {
    background-color: #FFE9E9;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.popup-header h3 {
    color: #FF0000;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    font-size: 30px;
    color: #FF0000;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: #B00707;
}

.popup-content p {
    color: #FF0000;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.popup-input {
    width: 100%;
    height: 50px;
    background-color: #FE6969;
    color: #FFE9E9;
    border: none;
    border-radius: 15px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    box-sizing: border-box;
}

.popup-input::placeholder {
    color: #FFE9E9;
}

.popup-input:focus {
    outline: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.popup-button {
    padding: 12px 24px;
    border: none;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-cancel {
    background-color: #8B0505;
    color: #FFE9E9;
}

.popup-cancel:hover {
    background-color: #6A0404;
    transform: scale(1.05);
}

.popup-submit {
    background-color: #D00808;
    color: #FFE9E9;
}

.popup-submit:hover {
    background-color: #B00707;
    transform: scale(1.05);
}

/* Responsive design for popup */
@media (max-width: 768px) {
    .popup-container {
        padding: 25px;
        max-width: 400px;
        width: 95%;
    }
    
    .popup-header h3 {
        font-size: 20px;
    }
    
    .popup-input {
        height: 45px;
        font-size: 16px;
    }
    
    .popup-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .popup-container {
        padding: 20px;
        max-width: 350px;
        width: 98%;
    }
    
    .popup-header h3 {
        font-size: 18px;
    }
    
    .popup-content p {
        font-size: 14px;
    }
    
    .popup-input {
        height: 40px;
        font-size: 14px;
    }
    
    .popup-buttons {
        flex-direction: row; /* Keep buttons side-by-side */
        gap: 10px;
    }
    
    .popup-button {
        flex: 1; /* Make buttons equal width */
        padding: 12px;
    }
}

/* Password Setup Page */
.password-setup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* Responsive design for Password-setup page - starting from 769px and below */
@media (max-width: 768px) {
    .password-setup-title {
        font-size: 48px !important; /* Reduced from 64px */
        margin-bottom: 45px !important; /* Reduced from 60px */
    }
    
    .password-form {
        gap: 25px !important; /* Reduced from 30px */
    }
    
    .form-group {
        width: 90vw !important; /* Match input field width */
        max-width: 400px !important; /* Match input field max-width */
    }
    
    .password-input {
        width: 100% !important; /* Use full width of form-group */
        height: 60px !important; /* Reduced from 75px */
        font-size: 24px !important; /* Reduced from 32px */
    }
    
    .password-input-container {
        width: 100% !important; /* Use full width of form-group */
    }
    
    .eye-icon {
        width: 20px !important; /* Reduced from 24px */
        height: 20px !important; /* Reduced from 24px */
    }
    
    .confirm-password-button {
        width: 195px !important; /* Increased from 150px */
        height: 40px !important; /* Reduced from 48px */
        font-size: 24px !important; /* Reduced from 32px */
    }
}

@media (max-width: 480px) {
    .password-setup-title {
        font-size: 36px !important; /* Reduced from 48px */
        margin-bottom: 35px !important; /* Reduced from 45px */
    }
    
    .password-form {
        gap: 20px !important; /* Reduced from 25px */
    }
    
    .form-group {
        width: 95vw !important; /* Match input field width */
        max-width: 320px !important; /* Match input field max-width */
    }
    
    .password-input {
        width: 100% !important; /* Use full width of form-group */
        height: 50px !important; /* Reduced from 60px */
        font-size: 20px !important; /* Reduced from 24px */
    }
    
    .password-input-container {
        width: 100% !important; /* Use full width of form-group */
    }
    
    .eye-icon {
        width: 16px !important; /* Reduced from 20px */
        height: 16px !important; /* Reduced from 20px */
    }
    
    .confirm-password-button {
        width: 155px !important; /* Increased from 120px */
        height: 36px !important; /* Reduced from 40px */
        font-size: 20px !important; /* Reduced from 24px */
    }
}

@media (max-width: 360px) {
    .password-setup-title {
        font-size: 28px !important; /* Reduced from 36px */
        margin-bottom: 25px !important; /* Reduced from 35px */
    }
    
    .password-form {
        gap: 15px !important; /* Reduced from 20px */
    }
    
    .form-group {
        width: 98vw !important; /* Match input field width */
        max-width: 280px !important; /* Match input field max-width */
    }
    
    .password-input {
        width: 100% !important; /* Use full width of form-group */
        height: 45px !important; /* Reduced from 50px */
        font-size: 18px !important; /* Reduced from 20px */
    }
    
    .password-input-container {
        width: 100% !important; /* Use full width of form-group */
    }
    
    .eye-icon {
        width: 14px !important; /* Reduced from 16px */
        height: 14px !important; /* Reduced from 16px */
    }
    
    .confirm-password-button {
        width: 130px !important; /* Increased from 100px */
        height: 32px !important; /* Reduced from 36px */
        font-size: 18px !important; /* Reduced from 20px */
    }
}

.password-setup-title {
    font-size: 64px;
    color: #FF0000;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.password-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 610px;
    width: 100%;
}

.password-input {
    width: 610px;
    height: 75px;
    background-color: #FE6969;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
}

.password-input::placeholder {
    color: #FFE9E9;
}

.password-input:focus {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.confirm-password-button {
    width: 259px;
    height: 48px;
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.confirm-password-button:hover {
    background-color: #B00707;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.confirm-password-button:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

/* Profile Page */
.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    min-height: calc(100vh - 140px);
    margin-top: -120px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.profile-avatar img:hover {
    transform: scale(1.1);
}

.profile-name-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
    max-width: 610px;
}

.profile-name-title {
    font-size: 48px;
    color: #FF0000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.name-edit-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.name-input {
    width: 610px;
    height: 75px;
    background-color: #FE6969;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
}

.name-input::placeholder {
    color: #FFE9E9;
}

.name-input:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.name-input:focus {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.save-name-button {
    width: 200px;
    height: 43px;
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: 15px;
}

.save-name-button:hover {
    background-color: #B00707;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.save-name-button:disabled {
    background-color: #4CAF50;
    cursor: not-allowed;
    transform: none;
}

.purchases-section {
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.purchases-title {
    font-size: 64px;
    color: #FF0000;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.no-purchases-message {
    font-size: 40px;
    color: #FE6969;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.logout-section {
    text-align: center;
    margin-top: 30px;
}

.logout-button {
    width: 300px;
    height: 50px;
    background-color: #8B0505;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logout-button:hover {
    background-color: #6A0404;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Responsive design for Profile page - comprehensive optimization */
@media (max-width: 1600px) {
    .profile-name-title {
        font-size: 44px; /* Reduced from 48px for large screens */
    }
    
    .purchases-title {
        font-size: 58px; /* Reduced from 64px for large screens */
    }
}

@media (max-width: 1400px) {
    .profile-container {
        padding: 15px 15px;
        margin-top: -100px;
    }
    
    .profile-name-title {
        font-size: 40px; /* Reduced from 44px */
    }
    
    .name-edit-container {
        align-items: flex-start; /* Change from center to flex-start for proper alignment */
        max-width: 550px; /* Match input field width */
        margin: 0 auto; /* Center the container */
    }
    
    .name-input {
        width: 550px; /* Reduced from 610px */
        height: 70px; /* Reduced from 75px */
        font-size: 28px; /* Reduced from 32px */
    }
    
    .purchases-title {
        font-size: 52px; /* Reduced from 58px */
    }
    
    .no-purchases-message {
        font-size: 36px; /* Reduced from 40px */
    }
    
    .save-name-button {
        width: 180px; /* Reduced from 200px */
        height: 40px; /* Reduced from 43px */
        font-size: 22px; /* Reduced from 24px */
        align-self: flex-end; /* Align to right edge of container */
        margin-top: 15px; /* Maintain spacing */
    }
    
    .logout-button {
        width: 280px; /* Reduced from 300px */
        height: 45px; /* Reduced from 50px */
        font-size: 22px; /* Reduced from 24px */
    }
}

@media (max-width: 1200px) {
    .profile-container {
        padding: 12px 12px;
        margin-top: -80px;
    }
    
    .profile-avatar {
        width: 90px; /* Reduced from 100px */
        height: 90px; /* Reduced from 100px */
        margin-bottom: 18px; /* Reduced from 20px */
    }
    
    .profile-name-title {
        font-size: 36px; /* Reduced from 40px */
        margin-bottom: 18px; /* Reduced from 20px */
    }
    
    .name-edit-container {
        align-items: flex-start; /* Change from center to flex-start for proper alignment */
        max-width: 500px; /* Match input field width */
        margin: 0 auto; /* Center the container */
    }
    
    .name-input {
        width: 500px; /* Reduced from 550px */
        height: 65px; /* Reduced from 70px */
        font-size: 26px; /* Reduced from 28px */
        padding: 0 18px; /* Reduced from 20px */
    }
    
    .purchases-title {
        font-size: 46px; /* Reduced from 52px */
        margin-bottom: 18px; /* Reduced from 20px */
    }
    
    .no-purchases-message {
        font-size: 32px; /* Reduced from 36px */
    }
    
    .save-name-button {
        width: 160px; /* Reduced from 180px */
        height: 38px; /* Reduced from 40px */
        font-size: 20px; /* Reduced from 22px */
        align-self: flex-end; /* Align to right edge of container */
        margin-top: 15px; /* Maintain spacing */
    }
    
    .logout-button {
        width: 260px; /* Reduced from 280px */
        height: 42px; /* Reduced from 45px */
        font-size: 20px; /* Reduced from 22px */
    }
}

@media (max-width: 1024px) {
    .profile-container {
        padding: 10px 10px;
        margin-top: -70px;
    }
    
    .profile-avatar {
        width: 80px; /* Reduced from 90px */
        height: 80px; /* Reduced from 90px */
        margin-bottom: 16px; /* Reduced from 18px */
    }
    
    .profile-name-title {
        font-size: 32px; /* Reduced from 36px */
        margin-bottom: 16px; /* Reduced from 18px */
    }
    
    .name-edit-container {
        align-items: flex-start; /* Change from center to flex-start for proper alignment */
        max-width: 450px; /* Match input field width */
        margin: 0 auto; /* Center the container */
    }
    
    .name-input {
        width: 450px; /* Reduced from 500px */
        height: 60px; /* Reduced from 65px */
        font-size: 24px; /* Reduced from 26px */
        padding: 0 16px; /* Reduced from 18px */
    }
    
    .purchases-title {
        font-size: 40px; /* Reduced from 46px */
        margin-bottom: 16px; /* Reduced from 18px */
    }
    
    .no-purchases-message {
        font-size: 28px; /* Reduced from 32px */
    }
    
    .save-name-button {
        width: 140px; /* Reduced from 160px */
        height: 36px; /* Reduced from 38px */
        font-size: 18px; /* Reduced from 20px */
        align-self: flex-end; /* Align to right edge of container */
        margin-top: 15px; /* Maintain spacing */
    }
    
    .logout-button {
        width: 240px; /* Reduced from 260px */
        height: 40px; /* Reduced from 42px */
        font-size: 18px; /* Reduced from 20px */
    }
}

@media (max-width: 768px) {
    .profile-container {
        padding: 8px 8px;
        margin-top: -60px;
    }
    
    .profile-avatar {
        width: 70px; /* Reduced from 80px */
        height: 70px; /* Reduced from 80px */
        margin-bottom: 14px; /* Reduced from 16px */
    }
    
    .profile-name-title {
        font-size: 28px; /* Reduced from 32px */
        margin-bottom: 14px; /* Reduced from 16px */
    }
    
    .name-edit-container {
        align-items: flex-start; /* Change from center to flex-start for proper alignment */
        width: 90vw; /* Responsive width */
        max-width: 400px; /* Maximum width constraint */
        margin: 0 auto; /* Center the container */
    }
    
    .name-input {
        width: 100%; /* Full width of container */
        height: 55px; /* Reduced from 60px */
        font-size: 22px; /* Reduced from 24px */
        padding: 0 14px; /* Reduced from 16px */
    }
    
    .purchases-title {
        font-size: 34px; /* Reduced from 40px */
        margin-bottom: 14px; /* Reduced from 16px */
    }
    
    .no-purchases-message {
        font-size: 24px; /* Reduced from 28px */
    }
    
    .save-name-button {
        width: 120px; /* Reduced from 140px */
        height: 34px; /* Reduced from 36px */
        font-size: 16px; /* Reduced from 18px */
        align-self: flex-end; /* Align to right edge of container */
        margin-top: 15px; /* Maintain spacing */
    }
    
    .logout-button {
        width: 200px; /* Reduced from 240px */
        height: 38px; /* Reduced from 40px */
        font-size: 16px; /* Reduced from 18px */
    }
}

@media (max-width: 480px) {
    .profile-container {
        padding: 6px 6px;
        margin-top: -50px;
    }
    
    .profile-avatar {
        width: 60px; /* Reduced from 70px */
        height: 60px; /* Reduced from 70px */
        margin-bottom: 12px; /* Reduced from 14px */
    }
    
    .profile-name-title {
        font-size: 24px; /* Reduced from 28px */
        margin-bottom: 12px; /* Reduced from 14px */
    }
    
    .name-edit-container {
        align-items: flex-start; /* Change from center to flex-start for proper alignment */
        width: 95vw; /* Increased responsive width */
        max-width: 350px; /* Maximum width constraint */
        margin: 0 auto; /* Center the container */
    }
    
    .name-input {
        width: 100%; /* Full width of container */
        height: 50px; /* Reduced from 55px */
        font-size: 20px; /* Reduced from 22px */
        padding: 0 12px; /* Reduced from 14px */
    }
    
    .purchases-title {
        font-size: 28px; /* Reduced from 34px */
        margin-bottom: 12px; /* Reduced from 14px */
    }
    
    .no-purchases-message {
        font-size: 20px; /* Reduced from 24px */
    }
    
    .save-name-button {
        width: 100px; /* Reduced from 120px */
        height: 32px; /* Reduced from 34px */
        font-size: 14px; /* Reduced from 16px */
        align-self: flex-end; /* Align to right edge of container */
        margin-top: 15px; /* Maintain spacing */
    }
    
    .logout-button {
        width: 180px; /* Reduced from 200px */
        height: 36px; /* Reduced from 38px */
        font-size: 14px; /* Reduced from 16px */
    }
}

@media (max-width: 360px) {
    .profile-container {
        padding: 4px 4px;
        margin-top: -40px;
    }
    
    .profile-avatar {
        width: 50px; /* Reduced from 60px */
        height: 50px; /* Reduced from 60px */
        margin-bottom: 10px; /* Reduced from 12px */
    }
    
    .profile-name-title {
        font-size: 20px; /* Reduced from 24px */
        margin-bottom: 10px; /* Reduced from 12px */
    }
    
    .name-edit-container {
        align-items: flex-start; /* Change from center to flex-start for proper alignment */
        width: 98vw; /* Maximum responsive width */
        max-width: 300px; /* Maximum width constraint */
        margin: 0 auto; /* Center the container */
    }
    
    .name-input {
        width: 100%; /* Full width of container */
        height: 45px; /* Reduced from 50px */
        font-size: 18px; /* Reduced from 20px */
        padding: 0 10px; /* Reduced from 12px */
    }
    
    .purchases-title {
        font-size: 24px; /* Reduced from 28px */
        margin-bottom: 10px; /* Reduced from 12px */
    }
    
    .no-purchases-message {
        font-size: 18px; /* Reduced from 20px */
    }
    
    .save-name-button {
        width: 90px; /* Reduced from 100px */
        height: 30px; /* Reduced from 32px */
        font-size: 12px; /* Reduced from 14px */
        align-self: flex-end; /* Align to right edge of container */
        margin-top: 15px; /* Maintain spacing */
    }
    
    .logout-button {
        width: 160px; /* Reduced from 180px */
        height: 34px; /* Reduced from 36px */
        font-size: 12px; /* Reduced from 14px */
    }
}

/* Responsive design for Auth page - comprehensive optimization */
@media (max-width: 1600px) {
    .auth-title {
        font-size: 58px; /* Reduced from 64px for large screens */
    }
    
    .form-label {
        font-size: 44px; /* Reduced from 48px */
        margin-bottom: 13px; /* Reduced from 15px */
    }
    
    .contact-method {
        width: 550px; /* Match auth-input width */
        height: 70px; /* Reduced from 75px */
        font-size: 44px; /* Reduced from 48px */
        gap: 13px; /* Reduced from 15px */
    }
    
    .contact-icon {
        width: 55px; /* Reduced from 60px */
        height: 55px; /* Reduced from 60px */
    }
    
    .signin-button {
        font-size: 22px; /* Match consent-text font size */
    }
}

@media (max-width: 1400px) {
    .auth-title {
        font-size: 52px; /* Reduced from 58px */
    }
    
    .form-label {
        font-size: 40px; /* Reduced from 44px */
        margin-bottom: 12px; /* Reduced from 13px */
    }
    
    .auth-input {
        width: 550px; /* Reduced from 610px */
        height: 70px; /* Reduced from 75px */
        font-size: 28px; /* Reduced from 32px */
    }
    
    .auth-button {
        width: 320px; /* Reduced from 355px */
        height: 45px; /* Reduced from 49px */
        font-size: 22px; /* Reduced from 24px */
    }
    
    .contact-method {
        width: 500px; /* Match auth-input width */
        height: 65px; /* Reduced from 70px */
        font-size: 40px; /* Reduced from 44px */
        gap: 12px; /* Reduced from 13px */
    }
    
    .contact-icon {
        width: 50px; /* Reduced from 55px */
        height: 50px; /* Reduced from 55px */
    }
    
    .signin-button {
        font-size: 22px; /* Match consent-text font size */
    }
    
    .consent-section {
        max-width: 550px; /* Match input field width */
        margin-top: 18px; /* Reduced from 20px */
    }
    
    .consent-text {
        font-size: 22px; /* Match signin-button responsive size */
    }
    
    .consent-checkbox {
        width: 18px; /* Reduced from 20px */
        height: 18px; /* Reduced from 20px */
    }
    
    .consent-checkbox:checked::after {
        font-size: 12px !important; /* Reduced from 14px */
    }
}

@media (max-width: 1200px) {
    .auth-title {
        font-size: 46px; /* Reduced from 52px */
    }
    
    .form-label {
        font-size: 36px; /* Reduced from 40px */
        margin-bottom: 11px; /* Reduced from 12px */
    }
    
    .auth-input {
        width: 500px; /* Reduced from 550px */
        height: 65px; /* Reduced from 70px */
        font-size: 26px; /* Reduced from 28px */
    }
    
    .auth-button {
        width: 290px; /* Reduced from 320px */
        height: 42px; /* Reduced from 45px */
        font-size: 20px; /* Reduced from 22px */
    }
    
    .contact-method {
        width: 450px; /* Match auth-input width */
        height: 60px; /* Reduced from 65px */
        font-size: 36px; /* Reduced from 40px */
        gap: 11px; /* Reduced from 12px */
    }
    
    .contact-icon {
        width: 45px; /* Reduced from 50px */
        height: 45px; /* Reduced from 50px */
    }
    
    .signin-button {
        font-size: 20px; /* Match consent-text font size */
    }
    
    .consent-section {
        max-width: 500px; /* Match input field width */
        margin-top: 16px; /* Reduced from 18px */
        gap: 10px; /* Reduced from 12px */
    }
    
    .consent-text {
        font-size: 20px; /* Match signin-button responsive size */
    }
    
    .consent-checkbox {
        width: 16px; /* Reduced from 18px */
        height: 16px; /* Reduced from 18px */
    }
    
    .consent-checkbox:checked::after {
        font-size: 11px !important; /* Reduced from 12px */
    }
}

@media (max-width: 1024px) {
    .auth-title {
        font-size: 40px; /* Reduced from 46px */
    }
    
    .form-label {
        font-size: 32px; /* Reduced from 36px */
        margin-bottom: 10px; /* Reduced from 11px */
    }
    
    .auth-input {
        width: 450px; /* Reduced from 500px */
        height: 60px; /* Reduced from 65px */
        font-size: 24px; /* Reduced from 26px */
    }
    
    .auth-button {
        width: 260px; /* Reduced from 290px */
        height: 40px; /* Reduced from 42px */
        font-size: 18px; /* Reduced from 20px */
    }
    
    .contact-method {
        width: 450px; /* Match auth-input width */
        height: 55px; /* Reduced from 60px */
        font-size: 32px; /* Reduced from 36px */
        gap: 10px; /* Reduced from 11px */
    }
    
    .contact-icon {
        width: 40px; /* Reduced from 45px */
        height: 40px; /* Reduced from 45px */
    }
    
    .signin-button {
        font-size: 18px; /* Match consent-text font size */
    }
    
    .consent-section {
        max-width: 450px; /* Match input field width */
        margin-top: 14px; /* Reduced from 16px */
        gap: 8px; /* Reduced from 10px */
    }
    
    .consent-text {
        font-size: 18px; /* Match signin-button responsive size */
    }
    
    .consent-checkbox {
        width: 15px; /* Reduced from 16px */
        height: 15px; /* Reduced from 16px */
    }
    
    .consent-checkbox:checked::after {
        font-size: 10px !important; /* Reduced from 11px */
    }
}

@media (max-width: 768px) {
    .auth-title {
        font-size: 34px; /* Reduced from 40px */
    }
    
    .form-label {
        font-size: 28px; /* Reduced from 32px */
        margin-bottom: 9px; /* Reduced from 10px */
    }
    
    .auth-input {
        width: 90vw; /* Responsive width */
        max-width: 400px; /* Maximum width constraint */
        height: 55px; /* Reduced from 60px */
        font-size: 22px; /* Reduced from 24px */
    }
    
    .auth-button {
        width: 200px; /* Reduced from 260px */
        height: 38px; /* Reduced from 40px */
        font-size: 16px; /* Reduced from 18px */
    }
    
    .contact-method {
        width: 90vw; /* Match auth-input responsive width */
        max-width: 400px; /* Match auth-input max-width */
        height: 50px; /* Reduced from 55px */
        font-size: 28px; /* Reduced from 32px */
        gap: 9px; /* Reduced from 10px */
    }
    
    .contact-icon {
        width: 35px; /* Reduced from 40px */
        height: 35px; /* Reduced from 40px */
    }
    
    .signin-button {
        font-size: 16px; /* Match consent-text font size */
    }
    
    .consent-section {
        width: 90vw; /* Responsive width */
        max-width: 400px; /* Maximum width constraint */
        margin-top: 12px; /* Reduced from 14px */
        gap: 6px; /* Reduced from 8px */
    }
    
    .consent-text {
        font-size: 16px; /* Match signin-button responsive size */
    }
    
    .consent-checkbox {
        width: 14px; /* Reduced from 15px */
        height: 14px; /* Reduced from 15px */
    }
    
    .consent-checkbox:checked::after {
        font-size: 9px !important; /* Reduced from 10px */
    }
}

@media (max-width: 480px) {
    .auth-title {
        font-size: 28px; /* Reduced from 34px */
    }
    
    .form-label {
        font-size: 24px; /* Reduced from 28px */
        margin-bottom: 8px; /* Reduced from 9px */
    }
    
    .auth-input {
        width: 95vw; /* Increased responsive width */
        max-width: 350px; /* Maximum width constraint */
        height: 50px; /* Reduced from 55px */
        font-size: 20px; /* Reduced from 22px */
    }
    
    .auth-button {
        width: 180px; /* Reduced from 200px */
        height: 36px; /* Reduced from 38px */
        font-size: 14px; /* Reduced from 16px */
    }
    
    .contact-method {
        width: 95vw; /* Match auth-input responsive width */
        max-width: 350px; /* Match auth-input max-width */
        height: 45px; /* Reduced from 50px */
        font-size: 24px; /* Reduced from 28px */
        gap: 8px; /* Reduced from 9px */
    }
    
    .contact-icon {
        width: 30px; /* Reduced from 35px */
        height: 30px; /* Reduced from 35px */
    }
    
    .signin-button {
        font-size: 14px; /* Match consent-text font size */
    }
    
    .consent-section {
        width: 95vw; /* Increased responsive width */
        max-width: 350px; /* Maximum width constraint */
        margin-top: 10px; /* Reduced from 12px */
        gap: 5px; /* Reduced from 6px */
    }
    
    .consent-text {
        font-size: 14px; /* Match signin-button responsive size */
    }
    
    .consent-checkbox {
        width: 13px; /* Reduced from 14px */
        height: 13px; /* Reduced from 14px */
    }
    
    .consent-checkbox:checked::after {
        font-size: 8px !important; /* Reduced from 9px */
    }
}

@media (max-width: 360px) {
    .auth-title {
        font-size: 24px; /* Reduced from 28px */
    }
    
    .form-label {
        font-size: 20px; /* Reduced from 24px */
        margin-bottom: 7px; /* Reduced from 8px */
    }
    
    .auth-input {
        width: 98vw; /* Maximum responsive width */
        max-width: 300px; /* Maximum width constraint */
        height: 45px; /* Reduced from 50px */
        font-size: 18px; /* Reduced from 20px */
    }
    
    .auth-button {
        width: 160px; /* Reduced from 180px */
        height: 34px; /* Reduced from 36px */
        font-size: 12px; /* Reduced from 14px */
    }
    
    .contact-method {
        width: 98vw; /* Match auth-input responsive width */
        max-width: 300px; /* Match auth-input max-width */
        height: 40px; /* Reduced from 45px */
        font-size: 20px; /* Reduced from 24px */
        gap: 7px; /* Reduced from 8px */
    }
    
    .contact-icon {
        width: 25px; /* Reduced from 30px */
        height: 25px; /* Reduced from 30px */
    }
    
    .signin-button {
        font-size: 12px; /* Match consent-text font size */
    }
    
    .consent-section {
        width: 98vw; /* Maximum responsive width */
        max-width: 300px; /* Maximum width constraint */
        margin-top: 8px; /* Reduced from 10px */
        gap: 4px; /* Reduced from 5px */
    }
    
    .consent-text {
        font-size: 12px; /* Match signin-button responsive size */
    }
    
    .consent-checkbox {
        width: 12px; /* Reduced from 13px */
        height: 12px; /* Reduced from 13px */
    }
    
    .consent-checkbox:checked::after {
        font-size: 7px !important; /* Reduced from 8px */
    }
}

/* Sign-in Page */
.signin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* Responsive design for Signin page - starting from 769px and below */
@media (max-width: 768px) {
    .signin-title {
        font-size: 48px !important; /* Reduced from 64px */
        margin-bottom: 45px !important; /* Reduced from 60px */
    }
    
    .signin-form {
        gap: 25px !important; /* Reduced from 30px */
    }
    
    .form-group {
        width: 90vw !important; /* Match input field width */
        max-width: 400px !important; /* Match input field max-width */
    }
    
    .signin-input {
        width: 100% !important; /* Use full width of form-group */
        height: 60px !important; /* Reduced from 75px */
        font-size: 24px !important; /* Reduced from 32px */
    }
    
    .password-input-container {
        width: 100% !important; /* Use full width of form-group */
    }
    
    .eye-icon {
        width: 20px !important; /* Reduced from 24px */
        height: 20px !important; /* Reduced from 24px */
    }
    
    .signin-submit-button {
        width: 150px !important; /* Reduced from 198px */
        height: 40px !important; /* Reduced from 48px */
        font-size: 24px !important; /* Reduced from 32px */
    }
    
    .forgot-password-button {
        width: 200px !important; /* Reduced from 259px */
        height: 40px !important; /* Reduced from 48px */
        font-size: 20px !important; /* Reduced from 24px */
    }
}

@media (max-width: 480px) {
    .signin-title {
        font-size: 36px !important; /* Reduced from 48px */
        margin-bottom: 35px !important; /* Reduced from 45px */
    }
    
    .signin-form {
        gap: 20px !important; /* Reduced from 25px */
    }
    
    .form-group {
        width: 95vw !important; /* Match input field width */
        max-width: 320px !important; /* Match input field max-width */
    }
    
    .signin-input {
        width: 100% !important; /* Use full width of form-group */
        height: 50px !important; /* Reduced from 60px */
        font-size: 20px !important; /* Reduced from 24px */
    }
    
    .password-input-container {
        width: 100% !important; /* Use full width of form-group */
    }
    
    .eye-icon {
        width: 16px !important; /* Reduced from 20px */
        height: 16px !important; /* Reduced from 20px */
    }
    
    .signin-submit-button {
        width: 120px !important; /* Reduced from 150px */
        height: 36px !important; /* Reduced from 40px */
        font-size: 20px !important; /* Reduced from 24px */
    }
    
    .forgot-password-button {
        width: 160px !important; /* Reduced from 200px */
        height: 36px !important; /* Reduced from 40px */
        font-size: 16px !important; /* Reduced from 20px */
    }
}

@media (max-width: 360px) {
    .signin-title {
        font-size: 28px !important; /* Reduced from 36px */
        margin-bottom: 25px !important; /* Reduced from 35px */
    }
    
    .signin-form {
        gap: 15px !important; /* Reduced from 20px */
    }
    
    .form-group {
        width: 98vw !important; /* Match input field width */
        max-width: 280px !important; /* Match input field max-width */
    }
    
    .signin-input {
        width: 100% !important; /* Use full width of form-group */
        height: 45px !important; /* Reduced from 50px */
        font-size: 18px !important; /* Reduced from 20px */
    }
    
    .password-input-container {
        width: 100% !important; /* Use full width of form-group */
    }
    
    .eye-icon {
        width: 14px !important; /* Reduced from 16px */
        height: 14px !important; /* Reduced from 16px */
    }
    
    .signin-submit-button {
        width: 100px !important; /* Reduced from 120px */
        height: 32px !important; /* Reduced from 36px */
        font-size: 18px !important; /* Reduced from 20px */
    }
    
    .forgot-password-button {
        width: 130px !important; /* Reduced from 160px */
        height: 32px !important; /* Reduced from 36px */
        font-size: 14px !important; /* Reduced from 16px */
    }
}

.signin-title {
    font-size: 64px;
    color: #FF0000;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.signin-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 610px;
    width: 100%;
}

.signin-input {
    width: 610px;
    height: 75px;
    background-color: #FE6969;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
}

.signin-input::placeholder {
    color: #FFE9E9;
}

.signin-input:focus {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.signin-input:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.signin-submit-button {
    width: 198px;
    height: 48px;
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.signin-submit-button:hover {
    background-color: #B00707;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.signin-submit-button:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

.forgot-password-button {
    width: 259px;
    height: 48px;
    background-color: #8B0505;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.forgot-password-button:hover {
    background-color: #6A0404;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Password Input Container */
.password-input-container {
    position: relative;
    width: 100%;
    max-width: 610px;
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eye-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.eye-icon:hover {
    transform: scale(1.1);
}

/* Password Input Hover Animation */
.password-input:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Password Validation Feedback */
.password-match {
    margin-top: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.password-match.error {
    color: #FF0000;
}



/* Admin Panel Styles */
.header:has(.admin-title) {
    justify-content: center;
    min-height: 140px;
}

.header:has(.admin-title) .admin-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.admin-title {
    font-size: 64px;
    color: #FF0000;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

.header:has(.admin-title) .admin-info {
    position: absolute;
    right: 200px;
}

.admin-content {
    margin-top: 40px;
}

.admin-content {
    display: flex;
    gap: 30px;
    padding: 20px;
    height: calc(100vh - 240px);
}

.users-panel {
    flex: 1;
    background-color: #FE6969;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.users-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
    padding-left: 10px;
    padding-right: 15px;
    width: calc(100% + 20px);
    margin-left: -10px;
}

.users-panel h3 {
    color: #FF0000;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

.user-item {
    background-color: #FFE9E9;
    color: #FF0000;
    border: none;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    z-index: 10;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

 .user-name {
     font-size: 18px;
     font-weight: 400;
     display: flex;
     align-items: center;
     gap: 8px;
 }
 
 .guest-indicator {
     font-size: 16px;
     opacity: 0.7;
     cursor: help;
 }

.user-details {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.user-status {
    font-size: 16px;
}

.last-message-time {
    font-size: 12px;
    opacity: 0.7;
}

.unread-indicator {
    background: linear-gradient(135deg, #FF0000, #D00808);
    color: #FFFFFF;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    min-width: 44px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
    border: 2px solid #FFFFFF;
    position: relative;
    animation: pulse 2s infinite;
    text-align: center;
    line-height: 1;
    padding: 0;
    padding-top: 8px;
}

.unread-indicator::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #FF0000, #D00808);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Special styling for high unread counts */
.unread-indicator[data-count="10+"] {
    background: linear-gradient(135deg, #FF0000, #8B0000);
    animation: urgent-pulse 1s infinite;
}

.unread-indicator[data-count="10+"]::before {
    background: linear-gradient(135deg, #FF0000, #8B0000);
    animation: urgent-pulse-ring 1s infinite;
}

@keyframes urgent-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes urgent-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.user-item:hover:not(.selected) {
    background-color: #FFFFFF;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.user-item:hover .unread-indicator {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.6);
    animation: none;
}

/* Trash icon for deleting user chats */
.trash-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #FF6B6B;
    z-index: 10;
}

.trash-icon:hover {
    color: #FF0000;
    transform: translateY(-50%) scale(1.1);
    animation: trashShake 0.5s ease-in-out;
}

.user-item:hover .trash-icon {
    transform: translateY(-50%) scale(1.05);
}

@keyframes trashShake {
    0%, 100% {
        transform: translateY(-50%) scale(1.1) rotate(0deg);
    }
    25% {
        transform: translateY(-50%) scale(1.1) rotate(-5deg);
    }
    75% {
        transform: translateY(-50%) scale(1.1) rotate(5deg);
    }
}

.user-item.selected {
    background-color: #D00808 !important;
    color: #FFE9E9 !important;
}

.user-item.selected:hover {
    background-color: #D00808 !important;
    color: #FFE9E9 !important;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.chat-panel {
    flex: 2;
    background-color: #FE6969;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.chat-header {
    text-align: center;
    margin-bottom: 20px;
}

.chat-header h3 {
    color: #FF0000;
    font-size: 32px;
    margin: 0;
    font-weight: 400;
}



.chat-status {
    color: #FF0000;
    font-size: 16px;
    margin-top: 5px;
}

.chat-messages {
    flex: 1;
    background-color: transparent;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 400px;
}

.no-messages {
    text-align: center;
    color: #FF0000;
    font-size: 18px;
    font-style: italic;
    padding: 40px 20px;
    opacity: 0.7;
}

.loading-indicator {
    text-align: center;
    padding: 40px 20px;
}

.loading-text {
    color: #FF0000;
    font-size: 16px;
    opacity: 0.8;
}

.chat-input-area {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    background-color: transparent;
    border-radius: 20px;
    padding: 15px;
    width: 100%;
    margin-left: 20px;
}

/* Admin chat specific positioning - override contact page styles */
.chat-panel .chat-input-area {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    margin-left: 10px;
    margin-top: 60px;
    width: 100%;
    min-height: auto;
    height: auto;
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

/* Admin page chat messages - override with shorter height */
.admin-content .chat-panel .chat-messages {
    max-height: 300px !important;
    height: 300px !important;
    min-height: 400px !important;
}

.chat-actions button {
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 15px;
    padding: 15px 25px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.chat-actions button:hover {
    background-color: #B00707;
    transform: scale(1.05);
}

.chat-actions button:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

#logout-btn {
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 20px;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#logout-btn:hover {
    background-color: #B00707;
    transform: scale(1.05);
}

.admin-password-container {
    position: relative;
    width: 100%;
}

.admin-password-toggle {
    position: absolute;
    right: 15px;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    width: auto;
    height: auto;
    display: block;
    border-radius: 0 !important;
    transition: none !important;
    box-shadow: none !important;
}

.admin-password-toggle:hover {
    background: none !important;
    transform: translateY(-50%) !important;
    box-shadow: none !important;
}

.admin-password-toggle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    pointer-events: none;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #FFE9E9;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.modal-content h3 {
    color: #FF0000;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.modal-content p {
    color: #FF0000;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.modal-content input {
    width: 100%;
    height: 50px;
    background-color: #FE6969;
    color: #FFE9E9;
    border: none;
    border-radius: 15px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    outline: none;
}

.modal-content label {
    color: #FF0000;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.modal-content input::placeholder {
    color: #FFE9E9;
}

.modal-content button {
    background-color: #D00808;
    color: #FFE9E9;
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content button:hover {
    background-color: #B00707;
    transform: scale(1.05);
}

/* Admin Chat Responsive Design */

/* Large screens (1600px+) */
@media (min-width: 1600px) {
    .admin-title {
        font-size: 72px;
    }
    
    .header:has(.admin-title) .admin-info {
        right: 40px;
    }
    
    .admin-content {
        gap: 40px;
        padding: 30px;
    }
    
    .users-panel h3,
    .chat-panel h3 {
        font-size: 36px;
    }
    
    .modal-content {
        max-width: 600px;
        padding: 50px;
    }
    
    .modal-content h3 {
        font-size: 36px;
    }
    
    .modal-content input {
        height: 60px;
        font-size: 20px;
    }
    
    .modal-content button {
        padding: 20px 40px;
        font-size: 20px;
    }
}

/* Medium-large screens (1200px - 1599px) */
@media (max-width: 1599px) {
    .admin-title {
        font-size: 56px;
    }
    
    .header:has(.admin-title) .admin-info {
        right: 30px;
    }
    
    .admin-content {
        gap: 25px;
        padding: 15px;
    }
    
    .users-panel h3,
    .chat-panel h3 {
        font-size: 28px;
    }
}

/* Tablets and small laptops (768px - 1199px) */
@media (max-width: 1199px) {
    .admin-title {
        font-size: 48px;
    }
    
    .header:has(.admin-title) .admin-info {
        right: 20px;
    }
    
    .admin-content {
        gap: 20px;
        padding: 12px;
        height: calc(100vh - 200px);
    }
    
    
    .users-panel h3,
    .chat-panel h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .users-panel,
    .chat-panel {
        padding: 15px;
    }
    
    .modal-content {
        max-width: 450px;
        padding: 35px;
    }
    
    .modal-content h3 {
        font-size: 28px;
    }
    
    .modal-content input {
        height: 45px;
        font-size: 18px;
    }
    
    .modal-content button {
        padding: 15px 30px;
        font-size: 18px;
    }
}

/* Mobile landscape and small tablets (481px - 767px) */
@media (max-width: 767px) {
    .admin-title {
        font-size: 36px;
    }
    
    .header:has(.admin-title) {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        min-height: auto;
        padding: 20px;
    }
    
    .header:has(.admin-title) .admin-title {
        position: static;
        transform: none;
        margin-bottom: 10px;
    }
    
    .header:has(.admin-title) .admin-info {
        position: static;
        right: auto;
    }
    
    .admin-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
        height: auto;
        min-height: calc(100vh - 200px);
    }
    
    .users-panel {
        order: 1;
        flex: none;
        min-height: 200px;
        max-height: 300px;
    }
    
    .chat-panel {
        order: 2;
        flex: 1;
        min-height: 400px;
    }
    
    .users-panel h3,
    .chat-panel h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .users-panel,
    .chat-panel {
        padding: 12px;
    }
    
    .admin-content .chat-panel .chat-messages {
        max-height: 250px !important;
        height: 250px !important;
        min-height: 250px !important;
    }
    
    .modal-content {
        max-width: 90vw;
        padding: 25px;
        margin: 20px;
    }
    
    .modal-content h3 {
        font-size: 24px;
    }
    
    .modal-content input {
        height: 40px;
        font-size: 16px;
    }
    
    .modal-content button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .admin-password-toggle {
        right: 12px;
    }
    
    .admin-password-toggle img {
        width: 20px;
        height: 20px;
    }
}

/* Mobile portrait (320px - 480px) */
@media (max-width: 480px) {
    .admin-title {
        font-size: 28px;
    }
    
    .header:has(.admin-title) {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        min-height: auto;
        padding: 15px;
    }
    
    .header:has(.admin-title) .admin-title {
        position: static;
        transform: none;
        margin-bottom: 8px;
    }
    
    .header:has(.admin-title) .admin-info {
        position: static;
        right: auto;
    }
    
    .admin-content {
        gap: 12px;
        padding: 8px;
        min-height: calc(100vh - 120px);
    }
    
    .users-panel {
        min-height: 180px;
        max-height: 250px;
    }
    
    .chat-panel {
        display: flex;
        flex-direction: column;
        max-height: 300px;
    }
    
    .users-panel h3,
    .chat-panel h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .users-panel,
    .chat-panel {
        padding: 10px;
    }
    
    .admin-content .chat-panel .chat-messages {
        max-height: 200px !important;
        height: 200px !important;
        min-height: 200px !important;
        flex: 1;
    }
    
    .chat-panel .chat-input-area {
        margin-top: 20px !important;
        margin-bottom: 10px;
    }
    
    .modal-content {
        max-width: 95vw;
        padding: 20px;
        margin: 10px;
    }
    
    .modal-content h3 {
        font-size: 20px;
    }
    
    .modal-content input {
        height: 35px;
        font-size: 14px;
    }
    
    .modal-content button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .admin-password-toggle {
        right: 10px;
    }
    
    .admin-password-toggle img {
        width: 18px;
        height: 18px;
    }
}

/* Very small screens (400px and below) */
@media (max-width: 400px) {
    .modal-content input {
        width: calc(100% - 40px);
        margin: 0 0 20px 0;
        display: block;
        margin-left: 0;
        margin-right: auto;
    }
    
    .modal-content label {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    
    .admin-password-toggle {
        right: 50px;
    }
}

/* Very small screens (320px and below) */
@media (max-width: 360px) {
    .admin-title {
        font-size: 24px;
    }
    
    .header:has(.admin-title) {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        min-height: auto;
        padding: 12px;
    }
    
    .header:has(.admin-title) .admin-title {
        position: static;
        transform: none;
        margin-bottom: 6px;
    }
    
    .header:has(.admin-title) .admin-info {
        position: static;
        right: auto;
    }
    
    .admin-content {
        min-height: calc(100vh - 100px);
    }
    
    
    .chat-panel {
        display: flex;
        flex-direction: column;
        max-height: 280px;
    }
    
    .admin-content .chat-panel .chat-messages {
        max-height: 180px !important;
        height: 180px !important;
        min-height: 180px !important;
        flex: 1;
    }
    
    .chat-panel .chat-input-area {
        margin-top: 15px !important;
        margin-bottom: 8px;
    }
    
    .users-panel h3,
    .chat-panel h3 {
        font-size: 16px;
    }
    
    .modal-content input {
        width: calc(100% - 40px);
        margin: 0 0 20px 0;
        display: block;
        margin-left: 0;
        margin-right: auto;
    }
    
    .modal-content label {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    
    .admin-password-toggle {
        right: 50px;
    }
}

/* User Items Responsive Design */
@media (max-width: 1199px) {
    .user-item {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .user-name {
        font-size: 16px;
    }
    
    .user-details {
        font-size: 12px;
    }
    
    .unread-indicator {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .trash-icon {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .user-item {
        padding: 10px;
        margin-bottom: 6px;
    }
    
    .user-name {
        font-size: 14px;
    }
    
    .user-details {
        font-size: 11px;
    }
    
    .unread-indicator {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .trash-icon {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .user-item {
        padding: 8px;
        margin-bottom: 5px;
    }
    
    .user-name {
        font-size: 13px;
    }
    
    .user-details {
        font-size: 10px;
    }
    
    .unread-indicator {
        font-size: 10px;
        padding: 2px 5px;
    }
    
    .trash-icon {
        font-size: 11px;
    }
}

/* Message Bubbles Responsive Design */
@media (max-width: 1199px) {
    .message-bubble {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .message-sender {
        font-size: 14px;
    }
    
    .message-time {
        font-size: 11px;
    }
    
    .message-content {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .delete-message-btn {
        font-size: 12px;
        padding: 4px 6px;
    }
}

@media (max-width: 767px) {
    .message-bubble {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .message-sender {
        font-size: 13px;
    }
    
    .message-time {
        font-size: 10px;
    }
    
    .message-content {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .delete-message-btn {
        font-size: 11px;
        padding: 3px 5px;
    }
}

@media (max-width: 480px) {
    .message-bubble {
        padding: 8px;
        margin-bottom: 6px;
    }
    
    .message-sender {
        font-size: 12px;
    }
    
    .message-time {
        font-size: 9px;
    }
    
    .message-content {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .delete-message-btn {
        font-size: 10px;
        padding: 2px 4px;
    }
}

/* Chat Input Responsive Design */
@media (max-width: 1199px) {
    .chat-panel .chat-input {
        padding: 12px;
        font-size: 14px;
    }
    
    .chat-panel .chat-input-area {
        margin-top: 40px;
    }
    
    .chat-actions button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .chat-panel .chat-input {
        padding: 10px;
        font-size: 13px;
    }
    
    .chat-panel .chat-input-area {
        margin-top: 30px;
    }
    
    .chat-actions button {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .chat-panel .chat-input {
        padding: 8px;
        font-size: 12px;
    }
    
    .chat-panel .chat-input-area {
        margin-top: 20px;
    }
    
    .chat-actions button {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Logout Button Responsive Design */
@media (max-width: 1599px) {
    .admin-info button {
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .admin-info button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .admin-info button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .admin-info button {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .admin-info button {
        padding: 5px 10px;
        font-size: 11px;
    }
}

