@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&display=swap');

:root {
    --bg-base: #050505;
    --bg-surface: rgba(18, 15, 24, 0.6);
    --bg-card: rgba(25, 20, 35, 0.4);
    --bg-card-hover: rgba(35, 28, 50, 0.6);
    --primary: #ff6b00; /* Vibrant Orange */
    --primary-glow: rgba(255, 107, 0, 0.5);
    --secondary: #9d4edd; /* Purple accent */
    --text-main: #f8f8f2;
    --text-muted: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 107, 0, 0.3);
}

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

html, body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--primary);
}

.orb-2 {
    top: 40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--secondary);
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, #ff6b00, #ffb000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Navbar (Glassmorphism) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: 150%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 320px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    backdrop-filter: blur(15px);
    z-index: 100;
    display: flex;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

.dropdown-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-list h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}

.dropdown-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.3rem 0;
    transition: 0.2s;
    cursor: default;
    display: flex;
    align-items: center;
}

.dropdown-list span::before {
    content: '•';
    color: var(--primary);
    margin-left: 8px;
    font-size: 1.2rem;
}

.dropdown-list span:hover {
    color: var(--text-main);
    transform: translateX(-5px);
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    background: rgba(255,255,255,0.03);
}

.btn-login:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

/* Hero Section */
.hero {
    padding: 6rem 5% 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    flex: 1;
    animation: slideUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-weight: 800;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-glow {
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    background: #e66000;
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    animation: fadeIn 1.2s ease-out;
}

.tech-card {
    background: linear-gradient(145deg, rgba(30,25,45,0.8), rgba(15,12,25,0.9));
    border: 1px solid var(--border-highlight);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    backdrop-filter: blur(10px);
}

.tech-card:hover {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.tech-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}

.dots { display: flex; gap: 6px; }
.dots span { width: 12px; height: 12px; border-radius: 50%; background: #444; }
.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.status {
    color: #27c93f;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 10px #27c93f;
}

.tech-card-body { text-align: center; }
.tech-card-body h3 { margin: 1.5rem 0; font-size: 1.5rem; }

.stats {
    display: flex;
    justify-content: space-around;
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat { display: flex; flex-direction: column; gap: 5px; }
.stat .label { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;}
.stat .value { font-size: 1.5rem; font-weight: 900; color: var(--text-main); }


/* Pricing Section */
.pricing {
    padding: 6rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.pricing-content { display: none; }
.pricing-content.active { display: block; animation: fadeIn 0.5s; }

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

.hidden-plan {
    display: none;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
}

.card-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 150px; height: 150px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.pricing-card:hover .card-glow { opacity: 0.3; }

.popular {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: -35px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(-45deg);
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.plan-name {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1.5rem;
}

.price span { font-size: 1.5rem; margin-left: 0.2rem; }
.price .period { font-size: 1rem; color: var(--text-muted); font-weight: 600; margin-right: 0.2rem; }

/* Card Features Unique Design */
.card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}
.f-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
}
.f-item:hover {
    background: rgba(255, 107, 0, 0.05);
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
}
.f-item i {
    font-size: 1.1rem;
    color: var(--primary);
    background: rgba(255, 107, 0, 0.08);
    padding: 0.6rem;
    border-radius: 10px;
}
.f-info {
    display: flex;
    flex-direction: column;
}
.f-val {
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.1;
}
.f-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}
.f-full {
    grid-column: 1 / -1;
}
.f-full i {
    color: #27c93f;
    background: rgba(39, 201, 63, 0.1);
}
.f-full:hover {
    background: rgba(39, 201, 63, 0.05);
    border-color: rgba(39, 201, 63, 0.3);
}
.f-full .f-lbl {
    font-size: 0.95rem;
    color: var(--text-main);
    text-transform: none;
}
.full-width { width: 100%; }

/* Features Section - Unique Layout */
.features {
    padding: 6rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    background: rgba(25, 20, 35, 0.6);
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-5px);
}

/* Asymmetric positioning */
.box-1 { grid-column: 1 / 2; }
.box-2 { grid-column: 2 / 3; transform: translateY(40px); }
.box-3 { grid-column: 1 / 2; }
.box-4 { grid-column: 2 / 3; transform: translateY(40px); }

.feature-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px var(--primary-glow);
    color: white;
}

.feature-box h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.feature-box p { color: var(--text-muted); line-height: 1.7; }

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials .section-header {
    padding: 0 5%;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-base), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-base), transparent);
}

.marquee {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
    animation: scroll-left 50s linear infinite;
}

.reverse-content {
    animation: scroll-right 50s linear infinite;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 2rem)); }
}

@keyframes scroll-right {
    from { transform: translateX(calc(-100% - 2rem)); }
    to { transform: translateX(0); }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    width: 350px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: right;
}

.testimonial-card:hover {
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.t-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}

.t-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.t-info {
    flex: 1;
}

.t-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.t-info span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
}

.t-body p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.all-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 0 5%;
    margin-top: 3rem;
}

.all-reviews-grid .testimonial-card {
    width: 100%;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
        padding: 1.5rem;
    }
}

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 5rem 5% 2rem;
    background: linear-gradient(to top, #000, transparent);
    margin-top: 6rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 { font-size: 2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;}
.footer-brand p { color: var(--text-muted); max-width: 300px; }

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 { font-size: 1.2rem; margin-bottom: 1.5rem; color: #fff; }
.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.link-group a:hover { color: var(--primary); transform: translateX(-5px); }
.link-group a i { width: 20px; text-align: center;}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center; }
    .features-layout { grid-template-columns: 1fr; }
    .box-2, .box-4 { transform: translateY(0); }
    .footer-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { flex-wrap: wrap; }
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .footer-links { grid-template-columns: 1fr; }
    .pricing-tabs { flex-wrap: wrap; }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
}
.close-modal {
    position: absolute;
    top: 15px; left: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: 0.3s;
}
.close-modal:hover { color: #fff; }

.input-group {
    margin-bottom: 1.5rem;
    text-align: right;
}
.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.input-group input, .input-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}
.input-group input:focus, .input-group select:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}
.input-group select option { background: #1a1625; color: #fff; }

.auth-divider {
    text-align: center; margin: 1.5rem 0; position: relative;
}
.auth-divider::before {
    content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.1); z-index: 1;
}
.auth-divider span {
    background: #1a1625; padding: 0 10px; position: relative; z-index: 2; color: var(--text-muted); font-size: 0.9rem;
}

.btn-google {
    background: #fff;
    color: #333;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: 0.3s;
}
.btn-google:hover { background: #f1f1f1; }
.btn-google i { color: #DB4437; font-size: 1.2rem; }

.auth-switch {
    text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-muted);
}
.auth-switch a { font-weight: 700; }

/* Invoice */
.invoice-summary {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.inv-row {
    display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 1rem;
}
.inv-total {
    font-size: 1.2rem; font-weight: 900; margin-top: 10px; margin-bottom: 0;
}
.payment-methods {
    margin-bottom: 1.5rem; display: flex; gap: 10px;
}
.pay-radio { flex: 1; cursor: pointer; }
.pay-radio input { display: none; }
.pay-box {
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px; text-align: center; transition: 0.3s;
    background: rgba(255,255,255,0.02);
}
.pay-radio input:checked + .pay-box {
    border-color: var(--primary); background: rgba(255,107,0,0.1);
}

/* Google Fake Modal */
.google-modal-content {
    background: #202124;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    font-family: Arial, sans-serif;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border: 1px solid #3c4043;
    margin: 0 auto;
}
.google-header {
    padding: 20px 25px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #3c4043;
}
.g-title { font-size: 14px; font-weight: 500; }
.google-header i { color: #4285F4; font-size: 18px; }

.google-body {
    padding: 30px 40px; text-align: center;
}
.google-body h2 { font-weight: 400; font-size: 24px; margin-bottom: 10px; }
.google-body p { font-size: 15px; margin-bottom: 30px; }
.g-account {
    display: flex; align-items: center; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid #3c4043;
    cursor: pointer; text-align: right; 
}
.g-account:hover { background: #303134; }
.g-avatar { width: 36px; height: 36px; border-radius: 50%; }
.g-acc-info { display: flex; flex-direction: column; text-align: right;}
.g-name { font-size: 14px; font-weight: 500; color: #e8eaed; }
.g-email { font-size: 12px; color: #9aa0a6; }
.g-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #e8eaed; }

.google-footer {
    display: flex; justify-content: space-between; padding: 15px 25px; font-size: 12px; color: #9aa0a6;
    background: #202124;
}
.g-langs { cursor: pointer; display: flex; align-items: center; gap: 5px; }
.g-links span { margin-left: 15px; cursor: pointer; }
.g-links span:hover { color: #e8eaed; }
