@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;700&family=Orbitron:wght@400;700;900&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #06050b;
    --bg-card: rgba(13, 11, 26, 0.55);
    --bg-card-hover: rgba(22, 19, 43, 0.7);
    --text-primary: #f5f5fc;
    --text-secondary: #9da0c2;
    
    /* Neon Accents */
    --neon-cyan: #00f2fe;
    --neon-pink: #ff007f;
    --neon-purple: #9d4edd;
    
    /* Neon Glow Shadows */
    --glow-cyan: 0 0 15px rgba(0, 242, 254, 0.4), 0 0 30px rgba(0, 242, 254, 0.1);
    --glow-pink: 0 0 15px rgba(255, 0, 127, 0.4), 0 0 30px rgba(255, 0, 127, 0.1);
    --glow-purple: 0 0 15px rgba(157, 78, 221, 0.4), 0 0 30px rgba(157, 78, 221, 0.1);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Canvas Background */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(13, 11, 26, 1) 0%, rgba(6, 5, 11, 1) 100%);
}

/* Glowing background grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(157, 78, 221, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(157, 78, 221, 0.03) 1px, transparent 1px);
    mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(157, 78, 221, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

h1, h2, h3, h4, .logo {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

/* Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navbar - Floating Glassmorphic bar */
header {
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 11, 26, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 10px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 242, 254, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Page content area constrained to screen */
main {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 75px;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/* Hero Section */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: var(--glow-pink);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--neon-pink);
    border-radius: 50%;
    box-shadow: var(--glow-pink);
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Right Side Terminal Simulation */
.terminal-container {
    perspective: 1000px;
}

.terminal-window {
    background: rgba(8, 7, 16, 0.85);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), var(--glow-cyan);
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    overflow: hidden;
    height: 340px;
    transition: var(--transition);
    transform: rotateY(-4deg) rotateX(4deg);
}

.terminal-window:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: var(--neon-cyan);
}

.terminal-header {
    background: rgba(18, 16, 35, 0.6);
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.t-red { background-color: #ff5f56; }
.t-yellow { background-color: #ffbd2e; }
.t-green { background-color: #27c93f; }

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.terminal-body {
    padding: 15px;
    color: #e2e8f0;
    height: calc(100% - 35px);
    overflow-y: auto;
}

.terminal-line {
    margin-bottom: 10px;
    line-height: 1.35;
    white-space: pre-wrap;
}

.t-prompt { color: var(--neon-cyan); }
.t-success { color: #27c93f; text-shadow: 0 0 5px rgba(39, 201, 63, 0.3); }
.t-accent { color: var(--neon-pink); }
.t-comment { color: #64748b; }

/* Internal Scrollable Grids (Dashboard-style viewport-containment) */
.page-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-header {
    text-align: center;
    margin-bottom: 25px;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 900;
}

.page-title span {
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Scrollable card area */
.scrollable-grid-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 10px 5px;
    max-height: calc(100vh - 270px);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(157, 78, 221, 0.35);
    box-shadow: 0 10px 25px -10px rgba(157, 78, 221, 0.2);
}

.glass-card.cyan-glow:hover {
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 10px 25px -10px rgba(0, 242, 254, 0.2);
}

.glass-card.pink-glow:hover {
    border-color: rgba(255, 0, 127, 0.35);
    box-shadow: 0 10px 25px -10px rgba(255, 0, 127, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    color: var(--text-primary);
    border: none;
    box-shadow: var(--glow-pink);
    text-align: center;
}

.btn-primary:hover {
    transform: scale(1.02) translateY(-1px);
    box-shadow: var(--glow-pink), 0 0 25px rgba(255, 0, 127, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: inset 0 0 10px rgba(0, 242, 254, 0.05);
    text-align: center;
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
    transform: scale(1.02) translateY(-1px);
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Card Elements */
.card-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Pricing Page Elements */
.price-tag {
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-pink);
    font-family: 'Orbitron', sans-serif;
    margin: 10px 0;
    text-shadow: var(--glow-pink);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.feature-list li {
    padding: 5px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.feature-list li::before {
    content: '✦';
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

/* Forms */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(7, 6, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
    background: rgba(18, 16, 35, 0.8);
}

textarea.form-control {
    resize: none;
    min-height: 80px;
}

/* Footer - Locked at bottom of viewport */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(4, 3, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    z-index: 100;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: none; /* Hide to save space in compact footer */
}

.footer-text {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link svg {
    width: 14px;
    height: 14px;
}

.social-link:hover {
    background: rgba(157, 78, 221, 0.15);
    border-color: var(--neon-purple);
    color: var(--neon-cyan);
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}

/* About / Stack layout */
.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.about-text {
    flex: 1;
}

.tech-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.18);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--neon-purple);
    margin: 4px;
    font-family: 'Orbitron', sans-serif;
    transition: var(--transition);
}

.tech-tag:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; box-shadow: var(--glow-pink); }
    100% { transform: scale(1); opacity: 0.7; }
}

/* Responsive Rules */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-subtitle {
        justify-content: center;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .terminal-window {
        max-width: 450px;
        height: 220px;
        margin: 0 auto;
        transform: none;
    }

    .terminal-window:hover {
        transform: scale(1.02);
    }
    
    .scrollable-grid-wrapper {
        max-height: calc(100vh - 250px);
    }
}

@media (max-width: 768px) {
    header {
        top: 0;
    }

    .nav-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 12px 20px;
    }

    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 200px;
        height: calc(100vh - 60px);
        background: rgba(7, 6, 16, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: var(--transition);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        right: 0;
    }
    html, body {
        height: auto !important;
        overflow: visible !important;
        overflow-x: hidden !important;
    }

    main {
        height: auto !important;
        overflow: visible !important;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .page-container {
        height: auto !important;
        justify-content: flex-start;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

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

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

    .container {
        padding: 0 16px;
    }

    .glass-card {
        padding: 16px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .scrollable-grid-wrapper {
        max-height: none !important;
        overflow: visible !important;
    }

    footer {
        position: relative !important;
        margin-top: 40px;
        z-index: 100;
    }

    footer .container {
        flex-direction: column;
        gap: 8px;
    }
    
    footer .footer-text {
        font-size: 0.7rem;
    }
}

/* Ultra small viewports */
@media (max-height: 600px) {
    .terminal-window {
        display: none; /* Hide visual assets on extremely short screens (like landscape phones) */
    }
    .hero-title {
        font-size: 1.8rem;
    }
}

/* Tabs switcher styling */
.tab-container-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 25px;
}

.tab-container {
    display: inline-flex;
    background: rgba(13, 11, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    padding: 5px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    color: var(--text-primary);
    box-shadow: var(--glow-pink);
}

.tab-content {
    display: none;
    animation: tabFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* Lightbox Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 5, 11, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content-wrapper {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content-wrapper {
    transform: scale(1);
}

/* App Browser Window Mockup composite layout */
.modal-phones-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    max-width: 100%;
}

.app-frame {
    width: 360px;
    aspect-ratio: 1.15;
    border: 10px solid #131122;
    border-radius: 18px;
    background: #222222;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.app-header {
    background: #131122;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 22px;
}

.app-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.app-screen {
    width: 100%;
    height: calc(100% - 22px);
    object-fit: contain;
    background: #222222;
    display: block;
}

.app-frame.cyan-glow {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.2);
    border-color: #121020;
    transition: var(--transition);
}
.app-frame.cyan-glow:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--glow-cyan);
    border-color: #1a182b;
}

.app-frame.pink-glow {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 127, 0.2);
    border-color: #121020;
    transition: var(--transition);
}
.app-frame.pink-glow:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--glow-pink);
    border-color: #1a182b;
}

/* Fallback for single image (TG Bot or others) */
.modal-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 254, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--glow-cyan);
    object-fit: contain;
}

/* Responsive sizes for browser window mockups */
@media (max-width: 768px) {
    .modal-phones-grid {
        flex-direction: column;
        gap: 15px;
    }
    .app-frame {
        width: 280px;
        aspect-ratio: 1.15;
        border-width: 6px;
        border-radius: 12px;
    }
    .app-header {
        padding: 4px 10px;
        height: 16px;
    }
    .app-screen {
        height: calc(100% - 16px);
    }
}



.modal-caption {
    margin-top: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--text-secondary);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    line-height: 1;
}

.modal-close:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}

/* Phone Mockup Frame */
.phone-frame {
    width: 250px;
    height: 500px;
    border: 10px solid #131122;
    border-radius: 36px;
    background: #111;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #111;
}

.phone-frame.cyan-glow {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.2);
    border-color: #121020;
}
.phone-frame.cyan-glow:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--glow-cyan);
    border-color: #1a182b;
    transform: scale(1.02);
}

.phone-frame.pink-glow {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 127, 0.2);
    border-color: #121020;
}
.phone-frame.pink-glow:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--glow-pink);
    border-color: #1a182b;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .phone-frame {
        width: 190px;
        height: 380px;
        border-width: 6px;
        border-radius: 24px;
    }
}
