:root {
    --dark-green: #1E2822;
    --medium-green: #273234;
    --gold: #D89950;
    --dark-gold: #A56923;
    --white: #FFFFFF;
    --light-bg: rgba(255,255,255,0.05);
    --section-padding: 150px;
}

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

body {
    font-family: 'PT Sans', sans-serif;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark-green);
}

h1, h2, h3, h4 {
    font-family: 'PT Sans Caption', serif;
    color: var(--gold);
    font-weight: normal;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--white);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 40, 34, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
    border: 2px solid rgba(30, 40, 34, 0.5);
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
    border: 1px solid rgba(216, 153, 80, 0.5);
}

::-webkit-scrollbar-corner {
    background: rgba(30, 40, 34, 0.5);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(30, 40, 34, 0.5);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--dark-gold);
}

::-webkit-scrollbar-thumb {
    transition: background 0.3s ease, border 0.3s ease;
}

textarea::-webkit-scrollbar {
    width: 8px;
}

textarea::-webkit-scrollbar-thumb {
    background: rgba(216, 153, 80, 0.7);
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: #212224;
    border: none;
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 153, 80, 0.3);
}

.btn:hover:after {
    opacity: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 40, 34, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(30, 40, 34, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(216, 153, 80, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 15px 5px rgba(216, 153, 80, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(216, 153, 80, 0); }
}

.pulse-animation {
    animation: pulse 2s ease-in-out;
}

.auth-btn.pulsing {
    position: relative;
    overflow: hidden;
}

.auth-btn.pulsing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.auth-btn.pulsing:hover::after {
    opacity: 1;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--gold);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

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

.logo-icon {
    margin-right: 10px;
    font-size: 24px;
}

.nav-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
}

.auth-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
}

.nav-item {
    margin: 0 15px 0 0;
}

.nav-item a {
    padding: 8px 15px;
    background: rgba(216, 153, 80, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-item a:hover {
    background: rgba(216, 153, 80, 0.3);
}

.nav-item i {
    margin-right: 8px;
    font-size: 14px;
}

.nav-item a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

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

.user-profile {
    display: flex;
    align-items: center;
    margin-left: 20px;
    cursor: pointer;
    position: relative;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--dark-green);
    font-weight: bold;
}

.user-name {
    font-weight: 600;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--medium-green);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 100;
}

.user-profile:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s ease;
}

.user-dropdown a:hover {
    background: rgba(216, 153, 80, 0.1);
    color: var(--gold);
}

.user-dropdown a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.auth-btn {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--dark-green);
    padding: 15px 15px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.auth-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(216, 153, 80, 0.3);
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    z-index: -1;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.6s ease-out;
    border-radius: 30px;
}

.auth-btn:hover::before {
    clip-path: circle(100% at 50% 50%);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

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

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 30px;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    z-index: 10;
}

.close-modal:hover {
    color: var(--gold);
}

.modal-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.modal-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.auth-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(216, 153, 80, 0.2);
}

.auth-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: var(--gold);
}

.auth-tab.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.auth-tab:hover:not(.active) {
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(216, 153, 80, 0.05);
    box-shadow: 0 0 0 3px rgba(216, 153, 80, 0.1);
}

.input-with-help {
    position: relative;
}

.help-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.help-icon:hover {
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.form-link {
    display: block;
    margin-top: 20px;
    font-size: 14px;
}

.form-text {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.8;
}

.tooltip {
    position: relative;
    display: inline-block;
    z-index: 1001;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: var(--medium-green);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1001;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    border: 1px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    word-wrap: break-word;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--gold) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    .tooltip .tooltiptext {
        width: auto;
        max-width: 90vw;
        white-space: normal;
        left: 0;
        transform: none;
        right: 0;
        margin: 0 auto;
        bottom: auto;
        top: 100%;
        margin-top: 5px;
    }
    
    .tooltip .tooltiptext::after {
        display: none;
    }
    
    .input-with-help .tooltip .tooltiptext {
        left: auto;
        right: 0;
        transform: none;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background: var(--medium-green);
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.input-with-help {
    position: relative;
    overflow: visible;
}

.help-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    overflow: visible;
}

.help-icon:hover {
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.hero {
    background: url(../img/background_1.png) no-repeat center/cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.hero-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    margin: 20px 0;
    border-radius: 2px;
}

.hero-text {
    font-size: 20px;
    text-align: justify;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(216, 153, 80, 0.1);
}

.paw-prints {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
}

.paw {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23D89950"><path d="M12 10a2 2 0 1 0-2-2 2 2 0 0 0 2 2zm5.65 1.78a6.49 6.49 0 0 0-11.3 0 1 1 0 0 0 1.73 1 4.49 4.49 0 0 1 7.84 0 1 1 0 1 0 1.73-1zM12 17a5 5 0 1 1 5-5 5 5 0 0 1-5 5z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: float 6s ease-in-out infinite;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.features-section {
    background: linear-gradient(rgba(39, 50, 52, 0.85), rgba(39, 50, 52, 0.85)), 
                url('../img/background_2.jpg') no-repeat center/cover;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    margin: -50px 0;
    padding: calc(var(--section-padding) + 50px) 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    margin: 20px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(30, 40, 34, 0.8);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(216, 153, 80, 0.2);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.feature-card:hover:before {
    height: 8px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
}

.feature-title {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
}

.feature-text {
    font-size: 16px;
    text-align: justify;
}

.section-divider {
    position: relative;
    height: 50px;
    background: var(--dark-green);
    z-index: 2;
}

.section-divider.down {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    margin-bottom: -1px;
}

.section-divider.up {
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    margin-top: -1px;
}

.section-divider.gradient.down {
    background: linear-gradient(to bottom right, var(--dark-green) 50%, var(--gold) 50.1%);
}

.section-divider.gradient.up {
    background: linear-gradient(to top left, var(--dark-green) 50%, var(--gold) 50.1%);
}


.footer {
    background: #273234;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    z-index: 1;
}

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

.footer-about {
    max-width: 300px;
}


.footer-about-text {
    text-align: justify;
}

.footer-logo {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-about-text {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-cat-container {
    position: relative;
    width: 500px;
    height: 220px;
    margin: 0 -100px;
}

.footer__img {
    background-image: url("../img/footcat_1.png");
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 5px 15px rgba(216, 153, 80, 0.3));
    transform-style: preserve-3d;
    position: relative;
}

.footer__img:hover {
    background-image: url("../img/footcat_2.png");
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(216, 153, 80, 0.5));
}

@keyframes catPulse {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}

.footer__img:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.footer__img:hover:before {
    opacity: 1;
}

.footer__img:not(:hover) {
    animation: catPulse 4s ease-in-out infinite;
}

.footer-col {
    min-width: 150px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    font-size: 14px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-col a:hover {
    transform: translateX(5px);
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(216, 153, 80, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-green);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 3px 10px rgba(216, 153, 80, 0.3);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.footer-cat {
    position: absolute;
    right: 5%;
    bottom: 15%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%23D89950"><path d="M288 192h17.1c22.1 38.3 63.5 64 110.9 64c11 0 21.8-1.4 32-4v4c0 35.3-28.7 64-64 64c-5.1 0-10-.6-14.7-1.7c-1.9 13.7-5.5 26.9-10.6 39.7c18.1 6 30.8 22.8 30.8 42.6c0 25.5-20.7 46.3-46.3 46.3c-6.2 0-12.3-1.2-18-3.5c-26.7 24.2-60.3 39.5-97.7 39.5c-54.3 0-102.4-27.1-130.8-68.6c-6.7 1.7-13.8 2.6-21.2 2.6C53.3 448 0 394.7 0 328c0-41.5 22.2-77.7 55.2-97.1c-1.1-4.2-1.7-8.5-1.7-12.9c0-35.3 28.7-64 64-64c4.9 0 9.6 .7 14.1 1.9C151.1 125.8 173.1 112 198 112h42.6c20.6 0 38.8 10.2 50 25.9c16.4-10.1 35.6-15.9 56.1-15.9c10.7 0 21.1 1.5 30.9 4.3c.4-2.2 .7-4.4 .7-6.7c0-30.9-25.1-56-56-56c-3.4 0-6.8 .3-10.1 .9C258.3 14.1 227.9 0 195 0c-66 0-120 53.4-120 119.2c0 19.9 4.9 38.6 13.5 55c-10.3 4.1-18 13.9-18 25.1c0 15.4 12.5 27.9 27.9 27.9c2.4 0 4.7-.3 6.9-.9c-3.4 15.2-5.3 31.1-5.3 47.6c0 23.2 4.3 45.5 12.2 66c-4.1 1.4-8.3 2.2-12.7 2.2c-21.1 0-38.3-17.1-38.3-38.3c0-7.5 2.2-14.5 5.9-20.4c-3.2-5.1-5.1-11.1-5.1-17.6c0-19.7 15.9-35.7 35.7-35.7c2.9 0 5.7 .4 8.4 1c12.9-42.4 42.1-76.8 78.9-95.8H288z"/></svg>') no-repeat center/contain;
    opacity: 0.8;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.footer-cat:hover {
    transform: translateY(-10px) rotate(-5deg) scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(216, 153, 80, 0.7));
}

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes run {
    0% { transform: translateX(-150px); }
    100% { transform: translateX(calc(100vw + 150px)); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.parallax-hero {
    background: url(../img/background_1.png) no-repeat center/cover;
    background-attachment: fixed;
    animation: parallaxHero 30s infinite linear;
}

.parallax-features {
    background: linear-gradient(rgba(39, 50, 52, 0.85), rgba(39, 50, 52, 0.85)), 
                url('../img/background_2.jpg') no-repeat center/cover;
    background-attachment: fixed;
    animation: parallaxFeatures 25s infinite alternate;
}

.parallax-screenshots {
    background: linear-gradient(rgba(39, 50, 52, 0.9), rgba(39, 50, 52, 0.9)), 
                url('../img/background_3') no-repeat center/cover;
    background-attachment: fixed;
    animation: parallaxScreenshots 20s infinite ease-in-out;
}

@keyframes parallaxHero {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes parallaxFeatures {
    0% { background-position: 0% 0%; }
    100% { background-position: 50% 100%; }
}

@keyframes parallaxScreenshots {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.screenshots-section {
    background: linear-gradient(rgba(39, 50, 52, 0.9), rgba(39, 50, 52, 0.9)), 
                url('../img/background_3.jpg') no-repeat center/cover;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.screenshots-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 700px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(216, 153, 80, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 5px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

.modal-screenshot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-screenshot .modal-content {
    width: auto;
    max-width: 95vw;
    max-height: 95vh;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal-screenshot-image {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: fixed;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 40px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .modal-screenshot .modal-content {
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .modal-screenshot-image {
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1024px) {
    .hero {
        background: url(../img/mobile_background_1.jpg) no-repeat center/cover;
        background-size: 150% auto;
    }
    
    .features-section {
        background: linear-gradient(rgba(39, 50, 52, 0.85), rgba(39, 50, 52, 0.85)), url('../img/mobile_background_2.jpg') no-repeat center/cover;
    }
    
    .screenshots-section {
        background: linear-gradient(rgba(39, 50, 52, 0.9), rgba(39, 50, 52, 0.9)), url('../img/mobile_background_3.jpg') no-repeat center/cover;
    }
    
    .parallax-hero,
    .parallax-features,
    .parallax-screenshots,
    .flying-hero,
    .flying-features,
    .flying-screenshots {
        animation: none !important;
        will-change: auto !important;
    }
}


@media (max-width: 480px) {
    .close-modal {
        top: 5px;
        right: 5px;
        font-size: 28px;
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 769px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        margin: 0 0 0 30px;
        flex-wrap: nowrap;
    }
    
    .nav-main {
        width: auto;
    }
}

@media (max-width: 768px) {
    .carousel-track {
        height: 350px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        height: 250px;
    }
    
    .screenshots-carousel {
        padding: 0 30px;
    }
    
    .carousel-indicator {
        width: 14px;
        height: 14px;
        margin: 0 8px;
    }
    
    .carousel-nav {
        min-width: 100%;
        padding: 15px 5px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 100px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-about {
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .footer-links {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .footer-cat {
        display: none;
    }
    
    .features-section,
    .footer {
        clip-path: none;
        margin: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .nav-right {
        margin-top: 15px;
        width: 100%;
        justify-content: space-between;
    }
    
    .auth-btn {
        margin-left: auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-text {
        font-size: 18px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .parallax {
        background-attachment: scroll;
    }
    
    .modal-content {
        padding: 30px 20px;
        max-height: 85vh;
    }
    
    .close-modal {
        font-size: 50px;
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 1200px) {
    .footer-cat-container {
        width: 400px;
        height: 176px;
        margin: 0 -50px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-about {
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-cat-container {
        order: 3;
        width: 350px;
        height: 154px;
        margin: 40px 0;
    }
    
    .footer-links {
        order: 2;
        gap: 60px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .footer-cat-container {
        width: 280px;
        height: 123px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

.parallax-hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-position 0.5s ease-out;
}

@keyframes flyThroughHero {
    0% {
        background-position: 0% 50%;
        background-size: 100%;
    }
    50% {
        background-position: 100% 50%;
        background-size: 110%;
    }
    100% {
        background-position: 0% 50%;
        background-size: 100%;
    }
}

.flying-hero {
    animation: flyThroughHero 30s infinite linear;
}

@keyframes flyThroughFeatures {
    0% {
        background-position: 0% 70%;
        background-size: 100%;
    }
    50% {
        background-position: 100% 70%;
        background-size: 110%;
    }
    100% {
        background-position: 0% 70%;
        background-size: 100%;
    }
}

.flying-features {
    animation: flyThroughFeatures 25s infinite linear;
}

@keyframes flyScreenshots {
    0%, 100% {
        background-position: 0% 50%;
        background-size: 100%;
    }
    20% {
        background-position: 20% 50%;
        background-size: 120%;
    }
    50% {
        background-position: 50% 100%;
        background-size: 130%;
    }
}

.flying-screenshots {
    animation: flyScreenshots 35s ease-in-out infinite;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.loader.show {
    opacity: 1;
    pointer-events: auto;
}

.loader-content {
    text-align: center;
    transform: translateY(-20px);
    transition: transform 0.3s ease-out;
}

.loader.show .loader-content {
    transform: translateY(0);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: var(--gold);
    border-bottom-color: var(--gold);
    margin: 0 auto 15px;
    position: relative;
    animation: spin 1.2s ease-in-out infinite;
}

.loader-spinner:before,
.loader-spinner:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.2s ease-in-out infinite;
    animation-delay: 0.6s;
}

.loader-spinner:before {
    top: 6px;
    left: 6px;
}

.loader-spinner:after {
    bottom: 6px;
    right: 6px;
}

.loader p {
    color: white;
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 15px;
    text-shadow: 0 0 5px rgba(216, 153, 80, 0.5);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: var(--medium-green);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 4000;
    transform: translateX(200%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #4CAF50;
}

.notification.error {
    border-left-color: #F44336;
}

@media (max-width: 768px) {
    .auth-tabs {
        flex-direction: column;
    }
    
    .auth-tab {
        text-align: center;
        padding: 15px;
    }
    
    .auth-tab.active:after {
        width: 30%;
        left: 35%;
    }
    
    .user-dropdown {
        min-width: 160px;
        right: -20px;
    }
}

.recovery-steps {
    position: relative;
    min-height: 300px;
}

.recovery-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.recovery-step.active {
    opacity: 1;
    visibility: visible;
}

.recovery-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.recovery-option {
    color: var(--white);
    background: rgba(30, 40, 34, 0.5);
    border: 1px solid rgba(216, 153, 80, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recovery-option:hover {
    background: rgba(216, 153, 80, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.recovery-option i {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
}

.recovery-success {
    text-align: center;
    padding: 20px;
}

.recovery-success i {
    font-size: 50px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.recovery-success h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.recovery-success p {
    margin-bottom: 25px;
}

.form-select {
    padding: 14px 20px;
    font-size: 16px;
    background: var(--medium-green);
    border: 1px solid rgba(216, 153, 80, 0.5);
    border-radius: 8px;
    color: var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'PT Sans', sans-serif;
    outline: none;
}

.form-select option {
    background: var(--medium-green);
    color: var(--white);
    padding: 12px;
    border: none;
    font-size: 14px;
}

.form-select option:hover {
    background: rgba(216, 153, 80, 0.2);
}

.form-select option:checked {
    background: var(--gold);
    color: var(--dark-green);
}

.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(216, 153, 80, 0.3);
}

.form-select:disabled {
    background: rgba(30, 40, 34, 0.6);
    border-color: rgba(216, 153, 80, 0.2);
    color: rgba(216, 153, 80, 0.4);
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .form-select {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .form-select {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-height: 680px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero {
        min-height: 640px;
        padding-top: 60px;
        clip-path: none;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-text {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .features-section {
        clip-path: none;
        margin: 0;
        padding: var(--section-padding) 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .footer {
        clip-path: none;
        margin-top: 0;
        padding-top: 80px;
    }
    
    .modal-content {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .auth-btn {
        font-size: 14px;
    }
    
    .hero-btns .btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    :root {
        --section-padding: 40px;
    }

    .navbar {
        padding: 8px 0;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-main {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-menu, .auth-btns {
        flex-direction: row;
        gap: 10px;
        margin-top: 10px;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-item a {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .auth-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .hero {
        padding-top: 120px;
        min-height: calc(100vh - 60px);
    }
    
    .navbar {
        padding: 5px 0;
    }
    
    .nav-container {
        padding: 5px 10px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-icon {
        font-size: 16px;
        margin-right: 6px;
    }
    
    .nav-menu, .auth-btns {
        margin-top: 8px;
    }
    
    .nav-item a, .auth-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .hero-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-btns .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.modal-screenshot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-screenshot .modal-content {
    width: auto;
    max-width: 95vw;
    max-height: 95vh;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal-screenshot-image {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.modal-screenshot-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.modal-screenshot-nav button {
    pointer-events: auto;
    background: rgba(216, 153, 80, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-screenshot-nav button:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.modal-screenshot-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}

.carousel-hint {
    text-align: center;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    animation: pulseHint 3s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.carousel-hint i {
    color: var(--gold);
}

@keyframes pulseHint {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .modal-screenshot-nav button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .modal-screenshot-counter {
        font-size: 12px;
        padding: 3px 10px;
    }
    
    .carousel-hint {
        font-size: 12px;
    }
}
.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-arrow-left {
    left: 20px;
}

.modal-arrow-right {
    right: 20px;
}
@media (max-width: 400px) {
    .hero {
        padding-top: 100px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 22px;
    }
}

@media (max-width: 250px), (max-height: 350px) {
    :root {
        --section-padding: 30px;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .navbar {
        padding: 5px 0;
        position: static;
    }
    
    .nav-container {
        flex-direction: column;
        padding: 0 5px;
    }
    
    .logo {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .logo-icon {
        font-size: 12px;
        margin-right: 5px;
    }
    
    .nav-menu, .auth-btns {
        flex-direction: column;
        gap: 5px;
        margin-top: 5px;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-item a {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .auth-btn {
        padding: 6px 10px;
        font-size: 10px;
        width: 100%;
    }
    
    .hero {
        padding-top: 70px;
        min-height: 200px;
        clip-path: none;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .hero-title:after {
        width: 40px;
        height: 2px;
        margin: 10px 0;
    }
    
    .hero-text {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .section-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .section-title:after {
        width: 40px;
        height: 2px;
        margin: 10px auto 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px 10px;
    }
    
    .feature-icon {
        margin-bottom: 10px;
    }
    
    .feature-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .feature-text {
        font-size: 10px;
    }
    
    .carousel-track {
        height: 150px;
    }
    
    .carousel-button {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .carousel-hint {
        font-size: 8px;
    }
    
    .carousel-nav {
        padding: 5px 0;
    }
    
    .carousel-indicator {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
    
    .modal-content {
        padding: 15px 10px;
        max-width: 98vw;
    }
    
    .modal-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .auth-tabs {
        flex-direction: column;
    }
    
    .auth-tab {
        padding: 8px 10px;
        font-size: 10px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-label {
        font-size: 10px;
        margin-bottom: 5px;
    }
    
    .form-input {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .form-footer {
        margin-top: 15px;
    }
    
    .form-link, .form-text {
        font-size: 9px;
        margin-top: 10px;
    }
    
    .footer {
        padding-top: 50px;
    }
    
    .footer-cat-container {
        width: 180px;
        height: 80px;
        margin: 20px 0;
    }
    
    .footer-col {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-col h3 {
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    
    .footer-col li {
        margin-bottom: 6px;
    }
    
    .footer-col a {
        font-size: 10px;
    }
    
    .social-links {
        gap: 8px;
        margin-top: 10px;
    }
    
    .social-links a {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .footer-bottom {
        padding: 10px 0;
        font-size: 9px;
    }
    
    .modal-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .modal-arrow-left {
        left: 5px;
    }
    
    .modal-arrow-right {
        right: 5px;
    }
    
    .modal-screenshot-image {
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .close-modal {
        top: 5px;
        right: 5px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
    
    .loader-spinner {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
    
    .loader p {
        font-size: 10px;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .recovery-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .recovery-option {
        padding: 10px;
    }
    
    .recovery-option i {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .recovery-success i {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .recovery-success h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .recovery-success p {
        font-size: 12px;
        margin-bottom: 15px;
    }
}

@media (max-height: 350px) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-content {
        padding-bottom: 20px;
    }
    
    .modal-content {
        max-height: 90vh;
        padding: 10px;
    }
    
    .features-section {
        padding: 40px 0;
    }
    
    .footer {
        padding-top: 40px;
    }
}