* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --primary: #8b5cf6;
    --primary-dark: #6366f1;
    --primary-light: #a78bfa;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-dark: #cbd5e1;
    --card-bg: rgba(30, 41, 59, 0.6);
    --border-glow: rgba(139, 92, 246, 0.25);
    --success: #10b981;
}

body {
    background: #0f0c29;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    color: var(--text-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reload Overlay - Clean */
.reload-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0c29;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
}

.reload-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.reload-content {
    text-align: center;
}

.reload-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.reload-text {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

/* Static Background - No Movement */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(139, 92, 246, 0.04);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: -80px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 20%;
}

.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 30%;
    right: 10%;
}

/* Navigation - Clean */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    z-index: 1000;
    transition: background 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    font-size: 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.nav-title {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid var(--border-glow);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(40px, 10vw, 70px);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.hero-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-glass {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    color: white;
}

.btn-glass:active {
    transform: scale(0.96);
    background: rgba(139, 92, 246, 0.2);
}

/* Scroll Indicator - Static */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-gray);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollMove 1.5s ease-in-out infinite;
}

@keyframes scrollMove {
    0% { top: 6px; opacity: 1; }
    70% { top: 24px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 550px;
    margin: 0 auto;
}

/* Features Grid */
.features {
    padding: 60px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.2s;
}

.feature-card:active {
    transform: scale(0.98);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-desc {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.5;
}

/* Action Section */
.action {
    padding: 60px 20px;
    text-align: center;
}

.action-content {
    max-width: 900px;
    margin: 0 auto;
}

.action-title {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 700;
    margin-bottom: 12px;
}

.action-desc {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 28px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.action-btn {
    padding: 10px 20px;
    font-size: 13px;
}

.action-btn i {
    font-size: 14px;
}

/* About Section */
.about {
    padding: 60px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-paragraph {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.visual-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 28px;
    padding: 28px;
    text-align: center;
}

.visual-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.visual-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon i {
    font-size: 32px;
    color: white;
}

.visual-label {
    font-size: 16px;
    font-weight: 600;
}

.visual-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    padding: 4px 12px;
    border-radius: 100px;
    color: var(--success);
    font-size: 11px;
}

/* Footer */
.footer {
    padding: 40px 20px 28px;
    border-top: 1px solid var(--border-glow);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.footer-logo {
    font-size: 20px;
    color: var(--primary);
}

.footer-name {
    font-size: 16px;
    font-weight: 600;
}

.footer-powered {
    color: var(--text-gray);
    font-size: 12px;
    margin-bottom: 6px;
}

.footer-company-link {
    text-decoration: none;
}

.footer-company {
    color: var(--primary-light);
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-copy {
    color: var(--text-gray);
    font-size: 11px;
}

/* Android Native Touch Feedback */
button, .btn, .action-btn, .nav-link, .feature-card {
    cursor: pointer;
    touch-action: manipulation;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-links {
        position: fixed;
        top: 56px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 56px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-desc {
        font-size: 14px;
        padding: 0 8px;
    }
}

/* Prevent text selection on buttons */
.btn, .action-btn, .nav-link {
    user-select: none;
    -webkit-user-select: none;
}
.typing-box h1,
.typing-box p {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #6366f1;
    width: fit-content;
}

/* blinking cursor */
.typing-box h1::after,
.typing-box p::after {
    content: '|';
    animation: blink 0.8s infinite;
    margin-left: 5px;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
.visual-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #6366f1;
}
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.visual-card {
    background: #0f172a;
    border-radius: 18px;
    padding: 25px;
    width: 280px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6366f1;
    margin-bottom: 12px;
}

.visual-title {
    font-size: 16px;
    color: #ffffff;
    margin: 5px 0;
    font-weight: 600;
}

.visual-dev {
    font-size: 13px;
    color: #94a3b8;
    margin: 4px 0;
}

.visual-role {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.visual-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #22c55e;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}
.footer {
    background: #0b1220;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    max-width: 420px;
    margin: auto;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo {
    color: #6366f1;
    font-size: 18px;
}

.footer-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.footer-tagline {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.footer-powered {
    font-size: 12px;
    color: #64748b;
}

.footer-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: #60a5fa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: #93c5fd;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 15px 0;
}

.footer-copy {
    font-size: 11px;
    color: #475569;
}
.footer-img {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    object-fit: cover;
    vertical-align: middle;
}
.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
}

.nav-logo {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
}

.nav-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
}

/* Optional: center navbar brand properly */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 15px 25px;
    
    /* Background photo */
    background: url("../photo/login.jpg") center/cover no-repeat;
    
    /* Glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border-radius: 15px;
}

/* Link style */
.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.nav-link i {
    font-size: 14px;
}

/* Hover effect */
.nav-link:hover {
    color: #7c5cff;
    transform: translateY(-2px);
}
/* ===== HERO BUTTON ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 14px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, #6c5ce7, #00d2ff);
    position: relative;
    overflow: hidden;

    /* clean UI */
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    transition: 0.3s ease;
}

/* hover lift */
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.5);
}

/* ===== HEARTBEAT EFFECT ===== */
.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0);
    border-radius: 14px;
    animation: heartbeat 1.8s infinite;
}

/* inner shine sweep */
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    animation: shine 2.5s infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes heartbeat {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

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

/* icon bounce like loading feel */
.btn-primary i {
    transition: 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}
.hero-scroll {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

/* wrapper */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 1px;
}

/* mouse shape */
.mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(6px);
}

/* scrolling wheel animation */
.wheel {
    width: 4px;
    height: 6px;
    background: white;
    border-radius: 10px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMove 1.4s infinite ease-in-out;
}

/* animation */
@keyframes scrollMove {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}
.action {
    padding: 80px 20px;
    background: #0b0b12;
    color: white;
}

.action-content {
    max-width: 1100px;
    margin: auto;
}

/* Header */
.action-header {
    text-align: center;
    margin-bottom: 40px;
}

.action-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.action-header p {
    opacity: 0.6;
    margin-top: 6px;
}

/* Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

/* Card */
.action-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* hover glow */
.action-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.25), transparent 60%);
    opacity: 0;
    transition: 0.3s;
}

.action-card:hover::before {
    opacity: 1;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
}

/* icon */
.action-card i {
    font-size: 20px;
    color: #7c5cff;
}

/* text */
.action-card h3 {
    margin: 0;
    font-size: 16px;
}

.action-card span {
    font-size: 12px;
    opacity: 0.6;
}
.action-header {
    text-align: center;
    margin-bottom: 40px;
}

/* title row */
.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* small logo */
.header-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* title */
.header-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* subtitle */
.action-header p {
    opacity: 0.6;
    margin-top: 6px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
}

/* small logo */
.tag-logo {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

/* icon spacing clean */
.section-tag i {
    font-size: 14px;
}
.reload-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 18, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* card */
.reload-card {
    text-align: center;
    color: white;
    padding: 30px;
}

/* spinner ring */
.reload-spinner {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #7c5cff;
    animation: spin 1s linear infinite;
}

/* text */
.reload-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.reload-card p {
    font-size: 12px;
    opacity: 0.6;
}

/* loading bar */
.reload-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto 0;
    border-radius: 50px;
    overflow: hidden;
}

.reload-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #7c5cff, #00d2ff);
    animation: load 2.5s ease forwards;
}

/* animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes load {
    to {
        width: 100%;
    }
}
.typing-text {
    font-size: 13px;
    opacity: 0.7;
    letter-spacing: 1px;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    width: fit-content;
    margin: 10px auto 0;
}
/* Action Section - Clean & Consistent with your theme */
.action {
    padding: 60px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.action-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.action-header {
    text-align: center;
    margin-bottom: 48px;
}

.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.header-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-glow);
}

.header-title h2 {
    font-size: clamp(28px, 6vw, 36px);
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#typing {
    color: var(--text-gray);
    font-size: 14px;
    min-height: 40px;
    max-width: 500px;
    margin: 0 auto;
}

/* Action Grid */
.action-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Cards - matches your existing card style */
.action-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: left;
}

.action-card:active {
    transform: scale(0.98);
}

/* Card Icons */
.action-card i {
    font-size: 28px;
    min-width: 44px;
    color: var(--primary);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Card Content */
.action-card>div {
    flex: 1;
}

.action-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0 0 4px 0;
}

.action-card>div>span:first-of-type {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.action-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 8px 0 0 0;
}

.action-card p:first-of-type {
    margin-top: 0;
}

/* Remove any extra div styles */
.action-card .dashboard-card {
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .action {
        padding: 80px 24px;
    }
    
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .action-card {
        padding: 24px;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }
    
    .action-card:hover {
        transform: translateY(-4px);
        border-color: rgba(139, 92, 246, 0.4);
        background: rgba(30, 41, 59, 0.7);
    }
    
    .action-card:active {
        transform: scale(0.98);
    }
    
    .action-card i {
        font-size: 32px;
    }
    
    .action-card h3 {
        font-size: 18px;
    }
    
    .header-logo {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 1024px) {
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .action {
        padding: 40px 16px;
    }
    
    .action-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .action-card i {
        margin: 0 auto 8px auto;
    }
    
    .action-card>div {
        text-align: center;
    }
    
    .header-title {
        flex-direction: column;
    }
}

/* Touch feedback */
.action-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}