@font-face {
    font-family: 'Gilroy';
    src: url('gilroy-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('gilroy-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #fa2f40;
    --color-bg-dark: #050008;
    --color-bg-black: #000000;
    --color-text-white: #ffffff;
    --color-text-gray: #cccccc;
    --color-text-light: #aaaaaa;
    --color-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: var(--color-text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('led.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(90deg, #054c76,#0c192a,#471c3a);
    background: linear-gradient(80deg, #054c76d4, #0c192ad9, #471c3ade);
    /* background: linear-gradient(135deg, rgb(21 0 0 / 80%) 0%, rgb(8 0 16 / 85%) 50%, rgb(1 0 21 / 80%) 100%); */
    /* background: -webkit-linear-gradient(90deg, #012439de, #0c192a99, #410a30d4); */
    /* background: linear-gradient(50deg, #001d2ed9, #0f0001a8, #170022b8); */
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

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

/* Animated Pucks */
.pucks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.puck {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #000000;
    border: 2px solid #333333;
    border-radius: 50%;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: transform;
    transform: translate(0, 0);
}

.puck::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94px;
    height: 94px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.puck-avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    background-size: 120% 120%;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    transition: opacity 0.3s ease;
    overflow: hidden;
    clip-path: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
}

.puck-avatar::after {
    content: 'ðŸ‘¤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    opacity: 0.5;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.puck-avatar[style*="background-image"]::after {
    opacity: 0;
}

/* Puck animations - now handled by JavaScript physics */
.puck-1,
.puck-2,
.puck-3,
.puck-4,
.puck-5,
.puck-6,
.puck-7,
.puck-8 {
    /* Position will be set by JavaScript */
    top: 0;
    left: 0;
}

/* Keyframe animations removed - now using JavaScript physics */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    background: rgba(5, 0, 8, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.header-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.header-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-primary, rgba(255, 255, 255, 0.4));
    transform: translateY(-1px);
}

.header-link-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}

.language-switcher {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.lang-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Gilroy', sans-serif;
    line-height: 1;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.lang-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-white);
}

/* Main */
.main {
    padding: 60px 0 100px;
    position: relative;
    z-index: 10;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 0 60px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(250, 47, 64, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 20px rgba(250, 47, 64, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 30px rgba(250, 47, 64, 0.5));
    }
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #fa2f40;
    margin-bottom: 20px;
    font-family: 'Gilroy', sans-serif;
}

.hero-description {
    font-size: 22px;
    color: var(--color-text-gray);
    line-height: 1.2;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    /* text-transform: uppercase; */
}

.hero-download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
    margin-bottom: 40px;
    margin-top: 20px;
}

.hero-download-buttons .download-btn {
    min-width: 160px;
    max-width: 180px;
    padding: 12px 20px;
    flex: 0 1 auto;
}

.hero-download-buttons .download-btn svg {
    width: 20px;
    height: 20px;
}

.hero-download-buttons .download-btn-name {
    font-size: 18px;
}

.hero-download-buttons .download-btn-coming-soon {
    font-size: 9px;
    margin-top: 2px;
}

.hero-download-buttons .download-btn-label {
    font-size: 11px;
}

/* Features */
/* For Whom Section */
.for-whom {
    padding: 80px 0;
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.for-whom-card {
    background: rgba(5, 0, 8, 0.6);
    border: 2px solid rgba(250, 47, 64, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.for-whom-card:hover {
    border-color: rgba(250, 47, 64, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(250, 47, 64, 0.2);
}

.for-whom-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-family: 'Gilroy', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

.for-whom-icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.for-whom-icon svg {
    width: 100%;
    height: 100%;
}

.for-whom-text {
    font-size: 17px;
    color: var(--color-text-gray);
    line-height: 1.8;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}

.features {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-text-white);
    font-family: 'Gilroy', sans-serif;
    letter-spacing: -0.5px;
}

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

.feature-card {
    background: rgba(5, 0, 8, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 47, 64, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(250, 47, 64, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    filter: drop-shadow(0 4px 8px rgba(250, 47, 64, 0.2));
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(250, 47, 64, 0.4));
}

.feature-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-white);
    font-family: 'Gilroy', sans-serif;
}

.feature-text {
    font-size: 17px;
    color: var(--color-text-gray);
    line-height: 1.8;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}

/* Download */
.download {
    padding: 80px 0;
    text-align: center;
}

.download-description {
    font-size: 22px;
    color: var(--color-text-gray);
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(5, 0, 8, 0.9);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    color: var(--color-text-white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    min-width: 220px;
    justify-content: center;
    font-family: 'Gilroy', sans-serif;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(250, 47, 64, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.download-btn:hover {
    background: var(--color-primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(250, 47, 64, 0.5);
}

.download-btn svg {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.download-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.download-btn-label {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1;
    font-weight: 400;
}

.download-btn-name {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.download-btn-coming-soon {
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    color: var(--color-primary);
    margin-top: 4px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.download-btn.disabled {
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
    border-color: rgba(250, 47, 64, 0.4);
    background: rgba(5, 0, 8, 0.7);
}

.download-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: rgba(5, 0, 8, 0.7);
}

.download-btn.disabled::before {
    display: none;
}

/* Footer */
.footer {
    background: rgba(5, 0, 8, 0.9);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--color-border);
    padding: 30px 0;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

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

.footer-text {
    color: var(--color-text-light);
    font-size: 14px;
    font-family: 'Gilroy', sans-serif;
}

.footer-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
    transform: translateX(3px);
}

/* Contact form */
.contact-card {
    max-width: 720px;
    margin: 60px auto;
    padding: 40px 30px;
    background: rgba(5, 0, 8, 0.85);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

.contact-card h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: var(--color-text-gray);
    margin-bottom: 30px;
}

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

.contact-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-weight: 600;
    color: var(--color-text-white);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-white);
    font-size: 16px;
    transition: border 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    background: var(--color-primary);
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--color-text-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.contact-status {
    min-height: 24px;
    color: var(--color-text-gray);
    font-size: 14px;
    margin-top: -10px;
}

.contact-status.success {
    color: #4caf50;
}

.contact-status.error {
    color: #ff7373;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 280px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-download-buttons {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 30px;
        justify-content: center;
        align-items: center;
    }

    .hero-download-buttons .download-btn {
        min-width: 140px;
        max-width: 160px;
        width: auto;
        padding: 10px 16px;
        flex: 0 0 auto;
    }
    
    .hero-download-buttons .download-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-download-buttons .download-btn-name {
        font-size: 16px;
    }
    
    .hero-download-buttons .download-btn-label {
        font-size: 10px;
    }
    
    .hero-download-buttons .download-btn-coming-soon {
        font-size: 8px;
        margin-top: 1px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-card {
        margin: 40px auto;
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .header-content {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .header-link {
        font-size: 12px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        padding: 6px 10px;
        gap: 4px;
    }

    .header-link-icon {
        width: 20px;
        height: 20px;
    }

    .logo {
        height: 40px;
        flex: 1;
        min-width: 0;
    }
    
    .language-switcher {
        gap: 6px;
    }
    
    .lang-btn {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .puck {
        width: 85px;
        height: 85px;
        opacity: 0.5;
    }

    .puck::before {
        width: 67px;
        height: 67px;
    }
    
    .puck-avatar {
        width: 67px;
        height: 67px;
        background-size: 120% 120%;
    }
    
    .puck-avatar::after {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0 30px;
    }

    .hero-logo {
        max-width: 640px;
    }

    .hero-subtitle {
        font-size: 20px;
        /* text-shadow: 0px 0px 9px #00000082; */
        text-transform: uppercase;
    }

    .hero-download-buttons {
        margin-bottom: 25px;
        margin-top: 15px;
        gap: 10px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .hero-download-buttons .download-btn {
        min-width: 130px;
        max-width: 150px;
        width: auto;
        padding: 10px 14px;
        flex: 0 0 auto;
    }

    .hero-download-buttons .download-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-download-buttons .download-btn-name {
        font-size: 14px;
    }
    
    .hero-download-buttons .download-btn-label {
        font-size: 9px;
    }
    
    .hero-download-buttons .download-btn-coming-soon {
        font-size: 7px;
        margin-top: 1px;
    }
    
    .header-content {
        gap: 10px;
    }

    .header-link {
        font-size: 11px;
        padding: 5px 8px;
        gap: 3px;
    }

    .header-link-icon {
        width: 18px;
        height: 18px;
    }

    .logo {
        height: 35px;
    }
    
    .lang-btn {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .for-whom {
        padding: 40px 0;
    }

    .for-whom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .for-whom-card {
        padding: 25px;
    }

    .for-whom-title {
        font-size: 20px;
    }

    .for-whom-text {
        font-size: 16px;
    }

    .features {
        padding: 40px 0;
    }

    .download {
        padding: 40px 0;
    }

    .puck {
        width: 68px;
        height: 68px;
    }

    .puck::before {
        width: 53px;
        height: 53px;
    }
    
    .puck-avatar {
        width: 53px;
        height: 53px;
        background-size: 120% 120%;
    }
    
    .puck-avatar::after {
        font-size: 14px;
    }
}

/* Android Tester Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--color-bg-dark);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-close {
    color: var(--color-text-light);
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--color-text-white);
}

.modal-content h2 {
    margin: 0 0 16px 0;
    color: var(--color-text-white);
    font-size: 28px;
    font-weight: 700;
}

.modal-content p {
    margin: 0 0 24px 0;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.tester-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-white);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, background-color 0.3s;
    box-sizing: border-box;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group input[type="email"]::placeholder {
    color: var(--color-text-light);
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: #e02838;
    transform: translateY(-1px);
}

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

.btn-submit:disabled {
    background-color: rgba(250, 47, 64, 0.5);
    cursor: not-allowed;
    transform: none;
}

.tester-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.tester-status.success {
    display: block;
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.tester-status.error {
    display: block;
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.tester-status.loading {
    display: block;
    background-color: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        padding: 24px;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 24px;
    }
}
