    /* Performance Optimized CSS - No Scroll Lag */
:root {
    --navy-blue: #004aad;
    --navy-light: #0066cc;
    --orange: #efa12e;
    --orange-light: #ffb74d;
    --green: #00bf62;
    --green-light: #00d46e;
    --white: #ffffff;
    --love-pink: #ff6b9d;
    --love-light: #ffc2d6;
}

/* Reset with performance optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Disable selection globally */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Enable selection only where needed */
.phone, .phone *, .toast {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Disable image dragging but keep clickable */
img {
    -webkit-user-drag: none;
    user-drag: none;
    /* REMOVED: pointer-events: none; */
}

/* Make logo clickable */
.logo, #schoolLogo, .logo img {
    pointer-events: auto !important;
    cursor: pointer;
}
/* Make buttons and interactive elements clickable */
button, .phone, .phone *, .toast,
.heart-icon, #heartTrigger,
.logo, #schoolLogo,
.popup-close-x, .popup-action-button {
    pointer-events: auto !important;
    cursor: pointer;
}
/* Base styles */
body {
    background: #004aad;
    color: var(--white);
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
    transition: all 0.3s ease;
    pointer-events: auto !important;
}

/* Love mode for heart animation */
body.love-mode {
    background: linear-gradient(135deg, #004aad, #3a0074);
}

/* Simple animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 191, 98, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(239, 161, 46, 0.05) 0%, transparent 20%);
    z-index: -1;
    pointer-events: none;
}

/* Hearts Container */
#hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
    transform: translateZ(0);
}

/* Love Filter Overlay */
#love-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 182, 193, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 20, 147, 0.15) 0%, transparent 50%);
    opacity: 0;
    pointer-events: none;
    z-index: 9997;
    transition: opacity 0.8s ease;
}

#love-filter.active {
    opacity: 1;
    animation: lovePulse 2s ease-in-out infinite alternate;
}

/* Falling Hearts */
.falling-heart {
    position: absolute !important;
    top: -50px !important;
    pointer-events: none !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif !important;
    user-select: none !important;
    transform: translateZ(0);
    animation: fall6s 6s ease-in forwards, sway6s 2s ease-in-out infinite, heartbeatSmooth6s 1.5s ease-in-out infinite, glow6s 3s ease-in-out infinite;
}

@keyframes fall6s {
    0% {
        opacity: 0;
        transform: translateY(-30px) rotate(0deg) scale(0.2);
    }
    5% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    80% {
        opacity: 0.9;
        transform: translateY(calc(100vh - 100px)) rotate(540deg) scale(0.9);
    }
    95% {
        opacity: 0.7;
        transform: translateY(calc(100vh - 50px)) rotate(720deg) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(calc(100vh + 100px)) rotate(900deg) scale(0.3);
    }
}

@keyframes sway6s {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-25px) rotate(-5deg);
    }
    50% {
        transform: translateX(10px) rotate(5deg);
    }
    75% {
        transform: translateX(25px) rotate(-3deg);
    }
}

@keyframes heartbeatSmooth6s {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(0.95);
    }
    75% {
        transform: scale(1.1);
    }
}

@keyframes glow6s {
    0%, 100% {
        filter: drop-shadow(0 0 10px currentColor) brightness(1);
        opacity: 0.9;
    }
    50% {
        filter: drop-shadow(0 0 25px currentColor) brightness(1.4);
        opacity: 1;
    }
}

@keyframes lovePulse {
    0% {
        filter: blur(0px) brightness(1);
        background-size: 100% 100%, 100% 100%, 100% 100%;
    }
    100% {
        filter: blur(2px) brightness(1.1);
        background-size: 120% 120%, 120% 120%, 120% 120%;
    }
}

/* Single smooth 360 spin animation */
@keyframes singleLogoSpin {
    0% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotateY(90deg) scale(0.95);
    }
    50% {
        transform: rotateY(180deg) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: rotateY(270deg) scale(0.95);
    }
    100% {
        transform: rotateY(360deg) scale(1);
        opacity: 0;
    }
}

@keyframes singleLogoSpinReverse {
    0% {
        transform: rotateY(360deg) scale(1);
        opacity: 0;
    }
    25% {
        transform: rotateY(270deg) scale(0.95);
    }
    50% {
        transform: rotateY(180deg) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: rotateY(90deg) scale(0.95);
    }
    100% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}

/* Love Burst Effect */
.love-burst {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9996;
    animation: burstExpand6s 1.5s ease-out forwards;
}

@keyframes burstExpand6s {
    0% {
        transform: scale(0);
        opacity: 0.9;
    }
    50% {
        transform: scale(2.5);
        opacity: 0.6;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    margin-bottom: 20px;
    animation: fadeIn 0.5s ease-out;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(0, 191, 98, 0.2);
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.2);
}

.logo-section {
    position: relative;
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    perspective: 1000px;
}

.logo-section picture {
    display: block;
    width: 100%;
    height: 100%;
}

.logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--orange);
    box-shadow: 0 0 15px rgba(239, 161, 46, 0.4);
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

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

.logo-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid var(--green);
    animation: rotateRing 40s linear infinite;
    pointer-events: none;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 191, 98, 0.1) 0%, transparent 50%);
    animation: pulseGlow 6s infinite alternate;
    pointer-events: none;
    z-index: 1;
}

/* Logo Backside for PWA - SIMPLIFIED */
.logo-backside {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--white), #f0f7ff);
    border: 5px solid var(--navy-blue);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    z-index: 4;
    cursor: default;
    backface-visibility: visible;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 74, 173, 0.4);
    overflow: hidden;
}

.logo-back-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.install-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.install-hint {
    color: var(--navy-blue);
    font-size: 11px;
    margin: 0;
    opacity: 0.7;
    font-weight: 500;
    line-height: 1.2;
}

.install-btn {
    background: var(--orange);
    color: var(--navy-blue);
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(239, 161, 46, 0.3);
    white-space: nowrap;
}

.install-btn:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

/* School Name */
.school-info {
    flex: 1;
    min-width: 0;
}

.school-name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.indian, .public, .school-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    font-size: 2.5rem;
}

.indian {
    color: var(--orange);
}

.public {
    color: var(--white);
}

.school-text {
    color: var(--green);
}

.school-location {
    margin-bottom: 12px;
}

.khandwa {
    font-size: 1.8rem;
    color: var(--white);
    background: var(--navy-blue);
    padding: 6px 20px;
    border-radius: 10px;
    display: inline-block;
    border: 2px solid var(--orange);
    letter-spacing: 2px;
    font-weight: 900;
}

.tagline {
    color: var(--green);
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 10px 25px;
    background: rgba(239, 161, 46, 0.15);
    border-radius: 20px;
    display: inline-block;
    border: 2px solid var(--green);
    animation: floatTagline 4s ease-in-out infinite;
}

/* Admission Top Badge */
.admission-top-badge {
    background: linear-gradient(90deg, var(--orange), var(--green));
    color: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 5px 15px rgba(239, 161, 46, 0.3);
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
}

.admission-top-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.badge-top-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
}

.badge-top-content i:first-child {
    font-size: 22px;
    animation: bounce 2s infinite;
}

.badge-top-content i:last-child {
    font-size: 16px;
    animation: moveRight 1.5s infinite alternate;
}

/* Admission Box (Green Section) */
.admission-box {
    background: var(--green);
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    animation: slideUp 0.6s ease-out;
    box-shadow: 0 8px 20px rgba(0, 191, 98, 0.3);
    border: 3px solid var(--white);
    overflow: hidden;
}

.admission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--green), var(--navy-blue));
}

.admission-box h2 {
    font-size: 22px;
    margin: 15px 0;
    font-weight: 700;
}

.icon {
    font-size: 50px;
    animation: bounce 3s infinite;
    color: var(--navy-blue);
    background: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    border: 3px solid var(--orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.admission-note {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Contact Box */
.contact-box {
    background: var(--white);
    color: #333;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    animation: slideUp 0.7s ease-out;
    box-shadow: 0 8px 20px rgba(0, 74, 173, 0.2);
    border: 2px solid var(--green);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-blue), var(--green), var(--orange));
}

.contact-box h3 {
    color: var(--navy-blue);
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}

.phone {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--navy-blue);
    border: 2px solid var(--green);
    transition: all 0.2s ease;
    cursor: pointer;
}

.phone:hover {
    background: #e6f0ff;
    transform: translateY(-2px);
}

.buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

button {
    flex: 1;
    min-width: 180px;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.call-btn {
    background: var(--orange);
    color: var(--navy-blue);
    border: 2px solid var(--orange);
}

.copy-btn {
    background: var(--navy-blue);
    color: var(--white);
    border: 2px solid var(--navy-blue);
}

.warning {
    background: #fff8e1;
    border-left: 5px solid var(--orange);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e65100;
    animation: pulseWarning 4s infinite;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Info Box */
.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    animation: fadeIn 0.8s ease-out;
    border: 2px solid rgba(0, 191, 98, 0.2);
}
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 191, 98, 0.2);
    transition: all 0.2s ease;
    align-items: flex-start;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item i {
    font-size: 28px;
    color: var(--green);
    background: rgba(255, 255, 255, 0.1);
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green);
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--orange);
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
}

.info-item p {
    color: #e3f2fd;
    line-height: 1.5;
    font-size: 15px;
}

/* YouTube Box */
.youtube-box {
    background: var(--white);
    color: #333;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 25px;
    animation: fadeIn 0.9s ease-out;
    border: 2px solid #ff0000;
}

.youtube-box i {
    font-size: 50px;
    color: #ff0000;
    margin-bottom: 12px;
    display: block;
}

.youtube-box p {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.youtube-box a {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.2s ease;
    border: 2px solid #ff0000;
}

.youtube-box a:hover {
    background: #cc0000;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px;
    color: #ccc;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    border: 2px solid rgba(0, 191, 98, 0.2);
}

.footer-logo {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
}

.footer-indian {
    color: var(--orange);
}

.footer-public {
    color: var(--white);
}

.footer-school {
    color: var(--green);
}

.seats {
    color: var(--orange);
    font-weight: 600;
    margin-top: 8px;
    font-size: 15px;
}

.tech-note {
    margin-top: 15px;
    color: var(--orange-light);
    font-weight: 600;
}

.heart-icon {
    cursor: pointer !important;
    display: inline-block !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: heartBeatSmooth 1.8s ease-in-out infinite !important;
    font-size: 18px !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10000 !important;
    -webkit-tap-highlight-color: transparent !important;
}

.heart-icon:hover {
    transform: scale(1.4) !important;
    color: #ff4757 !important;
    text-shadow: 0 0 20px rgba(255, 71, 87, 0.8) !important;
    animation: heartBeatSmooth 0.8s ease-in-out infinite !important;
}

.secret-hint {
    margin-top: 10px;
    color: var(--orange);
    font-size: 12px;
    animation: blinkHint 3s infinite;
    opacity: 0.8;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--green);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    border: 2px solid var(--orange);
    text-align: center;
    min-width: 280px;
    max-width: 90%;
    z-index: 100000;
    font-size: 15px;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

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

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

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatTagline {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

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

@keyframes pulseGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

@keyframes pulseWarning {
    0%, 100% { 
        border-left-color: var(--orange);
    }
    50% { 
        border-left-color: #ffa726;
    }
}

@keyframes heartBeatSmooth {
    0%, 100% { 
        transform: scale(1);
        color: var(--orange-light);
    }
    25% { 
        transform: scale(1.15);
        color: #ff6b81;
    }
    50% { 
        transform: scale(1);
        color: #ff4757;
    }
    75% { 
        transform: scale(1.1);
        color: #ff9ff3;
    }
}

@keyframes blinkHint {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes moveRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .school-name {
        justify-content: center;
        gap: 5px;
    }

    .indian, .public, .school-text {
        font-size: 2rem;
    }

    .khandwa {
        font-size: 1.5rem;
        padding: 5px 15px;
    }

    .logo-section {
        width: 120px;
        height: 120px;
    }

    .tagline {
        font-size: 1.1rem;
        padding: 8px 18px;
    }

    .badge-top-content {
        font-size: 16px;
        flex-direction: column;
        gap: 8px;
    }

    .buttons {
        flex-direction: column;
    }

    button {
        min-width: 100%;
    }

    .phone {
        font-size: 20px;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .admission-box h2 {
        font-size: 20px;
    }

    .icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-item i {
        margin-bottom: 10px;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .logo-backside {
        width: 120px;
        height: 120px;
        padding: 10px;
    }

    .install-icon {
        width: 40px;
        height: 40px;
    }

    .install-hint {
        font-size: 10px;
    }

    .install-btn {
        padding: 5px 10px;
        font-size: 10px;
    }

    .heart-icon {
        padding: 8px !important;
        margin: -8px !important;
    }

    .falling-heart {
        animation-duration: 4s !important;
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .indian, .public, .school-text {
        font-size: 1.8rem;
    }

    .khandwa {
        font-size: 1.3rem;
        padding: 4px 12px;
    }

    .logo-section {
        width: 100px;
        height: 100px;
    }

    .logo {
        border-width: 4px;
    }

    .logo-backside {
        width: 100px;
        height: 100px;
        padding: 8px;
    }

    .install-icon {
        width: 35px;
        height: 35px;
    }

    .install-hint {
        font-size: 9px;
    }

    .install-btn {
        padding: 4px 8px;
        font-size: 9px;
    }

    .admission-top-badge {
        padding: 12px 20px;
    }

    .badge-top-content {
        font-size: 14px;
    }

    .admission-box,
    .contact-box,
    .info-box,
    .youtube-box {
        padding: 20px;
        border-radius: 15px;
    }

    .phone {
        font-size: 18px;
    }

    button {
        padding: 14px;
        font-size: 15px;
    }

    .toast {
        min-width: 250px;
        padding: 12px 25px;
        font-size: 14px;
        bottom: 20px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Performance optimizations */
.header-content,
.admission-top-badge,
.admission-box,
.contact-box,
.info-box,
.youtube-box,
.footer {
    transform: translateZ(0);
    backface-visibility: hidden;
}