/* Custom Properties for Laser Grid Aesthetic */
:root {
    --laser-black: #000000;
    --laser-near-black: #080812;
    --laser-surface: #0e0e16;
    --laser-surface-raised: #141424;
    
    /* Neon Colors */
    --laser-cyan: #00ffff;
    --laser-cyan-mid: #00e5ff;
    --laser-cyan-pale: #a0f0ff;
    --laser-cyan-dim: #005a73;
    
    --laser-magenta: #ff0080;
    --laser-pink: #ff2d78;
    --laser-violet: #9b30ff;
    
    /* Chrome & Metal */
    --laser-chrome-bright: #ffffff;
    --laser-chrome-mid: #c0c0c0;
    --laser-chrome-dark: #666677;
    
    /* Neon Glows */
    --laser-glow-cyan: rgba(0, 255, 255, 0.6);
    --laser-glow-cyan-dim: rgba(0, 255, 255, 0.2);
    --laser-glow-magenta: rgba(255, 0, 128, 0.6);
    --laser-glow-magenta-dim: rgba(255, 0, 128, 0.25);
    
    /* Borders */
    --border-cyan: rgba(0, 255, 255, 0.2);
    --border-cyan-active: rgba(0, 255, 255, 0.6);
    --border-magenta: rgba(255, 0, 128, 0.25);
    --border-magenta-active: rgba(255, 0, 128, 0.6);
}

/* CSS Resets & Base Configuration */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--laser-black);
    color: var(--laser-cyan-pale);
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 4rem;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--laser-black);
}
::-webkit-scrollbar-thumb {
    background: var(--laser-cyan-dim);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--laser-cyan-mid);
}

/* Main Container (Optimized for Mobile-first width) */
.container {
    max-width: 580px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    position: relative;
    z-index: 10;
}

/* Perspective Grid Floor (The Signature Laser Floor) */
.laser-grid-floor {
    position: fixed;
    bottom: 0;
    left: -50%;
    right: -50%;
    height: 45vh;
    background: 
        linear-gradient(rgba(0, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 50px 35px;
    transform: perspective(350px) rotateX(65deg);
    transform-origin: bottom center;
    pointer-events: none;
    z-index: 1;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 95%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 95%);
}

@keyframes grid-scroll {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 35px;
    }
}

.laser-grid-floor--animated {
    animation: grid-scroll 2.5s linear infinite;
}

/* Ambient Laser Sun/Horizon Glow in background */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 48, 255, 0.06) 0%, rgba(255, 0, 128, 0.03) 40%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

/* Profile Header Section */
.profile-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.avatar-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.25rem;
    position: relative;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--laser-cyan);
    box-shadow: 0 0 15px var(--laser-glow-cyan), inset 0 0 10px var(--laser-glow-cyan);
    background-color: var(--laser-near-black);
    animation: avatar-pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes avatar-pulse {
    0%, 100% {
        box-shadow: 0 0 12px var(--laser-glow-cyan);
        border-color: var(--laser-cyan);
    }
    50% {
        box-shadow: 0 0 20px var(--laser-glow-magenta), 0 0 5px var(--laser-glow-magenta);
        border-color: var(--laser-magenta);
    }
}

/* Chrome Metallic Title Gradient */
.laser-chrome-display {
    font-family: 'Orbitron', 'Tajawal', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #e5e5e5 25%,
        #777788 50%,
        #cccccc 75%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.05rem;
    color: var(--laser-cyan-mid);
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.35);
}

/* Terminal Status Box */
.terminal-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(0, 255, 255, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    gap: 8px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--laser-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--laser-cyan);
    animation: dot-pulse 1.8s infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 10px var(--laser-cyan); }
}

.laser-mono {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--laser-cyan);
    text-shadow: 0 0 3px var(--laser-glow-cyan);
}

.profile-bio {
    font-size: 0.95rem;
    max-width: 440px;
    margin: 0 auto;
    color: rgba(160, 240, 255, 0.8);
    font-weight: 300;
}

/* Social Media Grid Section */
.socials-section {
    margin-bottom: 2rem;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.social-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid var(--border-cyan);
    border-radius: 8px;
    color: var(--laser-cyan-pale);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

/* X (Twitter) - White style */
.x-box {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.x-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Instagram - Magenta/Pink style */
.insta-box {
    border-color: var(--border-magenta);
    color: var(--laser-magenta);
}
.insta-box:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--laser-magenta);
    box-shadow: 0 0 15px var(--laser-glow-magenta);
    transform: translateY(-2px);
}

/* Snapchat - Yellow style */
.snap-box {
    border-color: rgba(255, 252, 0, 0.2);
    color: #fffc00;
}
.snap-box:hover {
    background: rgba(255, 252, 0, 0.1);
    border-color: #fffc00;
    box-shadow: 0 0 15px rgba(255, 252, 0, 0.5);
    transform: translateY(-2px);
}

/* WhatsApp - Green style */
.wa-box {
    border-color: rgba(37, 211, 102, 0.2);
    color: #25d366;
}
.wa-box:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

/* LinkedIn - Blue style */
.linkedin-box {
    border-color: rgba(10, 102, 194, 0.2);
    color: #0a66c2;
}
.linkedin-box:hover {
    background: rgba(10, 102, 194, 0.1);
    border-color: #0a66c2;
    box-shadow: 0 0 15px rgba(10, 102, 194, 0.5);
    transform: translateY(-2px);
}

/* GitHub - Silver style */
.github-box {
    border-color: rgba(139, 148, 158, 0.2);
    color: #8b949e;
}
.github-box:hover {
    background: rgba(139, 148, 158, 0.1);
    border-color: #8b949e;
    box-shadow: 0 0 15px rgba(139, 148, 158, 0.4);
    transform: translateY(-2px);
}

/* TikTok - Cyan & Magenta Chromatic style */
.tiktok-box {
    border-color: rgba(0, 242, 254, 0.25);
    color: #ffffff;
    text-shadow: -1px -1px 0 #ff0050, 1px 1px 0 #00f2fe;
}
.tiktok-box:hover {
    background: rgba(1, 1, 1, 0.2);
    border-color: #00f2fe;
    box-shadow: 
        -2px 0 12px rgba(255, 0, 80, 0.6), 
        2px 0 12px rgba(0, 242, 254, 0.6);
    transform: translateY(-2px);
}

/* Dividers styling */
.laser-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--laser-cyan) 25%, var(--laser-cyan) 75%, transparent);
    box-shadow: 0 0 8px var(--laser-glow-cyan);
    margin: 2.2rem auto;
    width: 90%;
}

.laser-divider--magenta {
    background: linear-gradient(90deg, transparent, var(--laser-magenta) 25%, var(--laser-magenta) 75%, transparent);
    box-shadow: 0 0 8px var(--laser-glow-magenta);
}

/* Sections Styling */
.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--laser-cyan-mid);
    text-shadow: 0 0 8px var(--laser-glow-cyan-dim);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--laser-cyan);
    margin: 0.5rem auto 0;
    box-shadow: 0 0 5px var(--laser-cyan);
}

/* Key Links (Linktree styling) */
.links-section {
    margin-bottom: 2rem;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.laser-link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid var(--border-cyan);
    border-radius: 8px;
    color: var(--laser-cyan-pale);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    min-height: 52px;
}

.laser-link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--laser-cyan);
    box-shadow: 0 0 6px var(--laser-cyan);
    transition: all 0.3s ease;
}

.laser-link-button:hover {
    transform: translateX(-4px); /* Moves left on hover because page is RTL */
    border-color: var(--laser-cyan);
    color: #ffffff;
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.15), 
        inset 0 0 10px rgba(0, 255, 255, 0.05);
}

.laser-link-button:hover::before {
    background-color: #ffffff;
    box-shadow: 0 0 10px #ffffff;
    width: 5px;
}

/* Magenta variant for key links */
.laser-link-button--magenta {
    border-color: var(--border-magenta);
}

.laser-link-button--magenta::before {
    background-color: var(--laser-magenta);
    box-shadow: 0 0 6px var(--laser-magenta);
}

.laser-link-button--magenta:hover {
    border-color: var(--laser-magenta);
    box-shadow: 
        0 0 15px rgba(255, 0, 128, 0.15), 
        inset 0 0 10px rgba(255, 0, 128, 0.05);
}

.laser-link-button--magenta:hover::before {
    background-color: #ffffff;
    box-shadow: 0 0 10px #ffffff;
    width: 5px;
}

.button-text {
    flex-grow: 1;
}

.button-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--laser-cyan);
}

.laser-link-button:hover .button-arrow {
    transform: translateX(-5px); /* Slide arrow pointing left in RTL */
    color: #ffffff;
}

.laser-link-button--magenta .button-arrow {
    color: var(--laser-magenta);
}

/* Wireframe Cards / Advertising Panels */
.banners-section {
    margin-bottom: 2rem;
}

.banners-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.laser-card {
    background: rgba(14, 14, 22, 0.85);
    border: 1px solid var(--border-cyan);
    border-radius: 6px;
    position: relative;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        inset 0 0 15px rgba(0, 0, 0, 0.8);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Corner Technical Accents (The Wireframe corners) */
.laser-card::before,
.laser-card::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--laser-cyan);
    border-style: solid;
    pointer-events: none;
    z-index: 5;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.laser-card::before {
    top: -1px;
    right: -1px;
    border-width: 2px 2px 0 0;
    box-shadow: 2px -2px 5px var(--laser-glow-cyan-dim);
}

.laser-card::after {
    bottom: -1px;
    left: -1px;
    border-width: 0 0 2px 2px;
    box-shadow: -2px 2px 5px var(--laser-glow-cyan-dim);
}

/* Card Hover States */
.laser-card:hover {
    border-color: var(--laser-cyan-mid);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.12),
        0 0 40px rgba(0, 255, 255, 0.04),
        inset 0 0 15px rgba(0, 0, 0, 0.8);
}

.laser-card:hover::before,
.laser-card:hover::after {
    border-color: #ffffff;
    box-shadow: 0 0 8px #ffffff;
}

/* Magenta Card Override */
.laser-card--magenta {
    border-color: var(--border-magenta);
}

.laser-card--magenta::before {
    border-color: var(--laser-magenta);
    box-shadow: 2px -2px 5px var(--laser-glow-magenta-dim);
}

.laser-card--magenta::after {
    border-color: var(--laser-magenta);
    box-shadow: -2px 2px 5px var(--laser-glow-magenta-dim);
}

.laser-card--magenta:hover {
    border-color: var(--laser-pink);
    box-shadow: 
        0 0 20px rgba(255, 0, 128, 0.12),
        0 0 40px rgba(255, 0, 128, 0.04),
        inset 0 0 15px rgba(0, 0, 0, 0.8);
}

.laser-card--magenta:hover::before,
.laser-card--magenta:hover::after {
    border-color: #ffffff;
    box-shadow: 0 0 8px #ffffff;
}

/* Ad Banner Layout details */
.ad-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ad-image-container {
    width: 100%;
    height: 160px;
    position: relative;
    background-color: var(--laser-black);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    overflow: hidden;
}

.ad-card--magenta .ad-image-container {
    border-bottom-color: rgba(255, 0, 128, 0.15);
}

.ad-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ad-card:hover .ad-image {
    transform: scale(1.05);
}

.ad-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--laser-cyan);
    color: var(--laser-cyan);
    padding: 0.25rem 0.65rem;
    font-size: 0.72rem;
    font-weight: bold;
    border-radius: 4px;
    text-shadow: 0 0 3px var(--laser-glow-cyan);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.ad-badge--magenta {
    border-color: var(--laser-magenta);
    color: var(--laser-magenta);
    text-shadow: 0 0 3px var(--laser-glow-magenta);
    box-shadow: 0 0 8px rgba(255, 0, 128, 0.35);
}

.ad-details {
    padding: 1.25rem;
}

.ad-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ad-desc {
    font-size: 0.88rem;
    color: rgba(160, 240, 255, 0.75);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Neon buttons inside ads */
.laser-btn-glow {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--laser-cyan);
    background: transparent;
    color: var(--laser-cyan);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.15), inset 0 0 8px rgba(0, 255, 255, 0.05);
}

.laser-btn-glow:hover {
    background: rgba(0, 255, 255, 0.08);
    box-shadow: 0 0 15px var(--laser-glow-cyan), 0 0 40px rgba(0, 255, 255, 0.1), inset 0 0 12px rgba(0, 255, 255, 0.08);
    color: #ffffff;
}

.laser-btn-glow--magenta {
    border-color: var(--laser-magenta);
    color: var(--laser-magenta);
    box-shadow: 0 0 8px rgba(255, 0, 128, 0.15), inset 0 0 8px rgba(255, 0, 128, 0.05);
}

.laser-btn-glow--magenta:hover {
    background: rgba(255, 0, 128, 0.08);
    box-shadow: 0 0 15px var(--laser-glow-magenta), 0 0 40px rgba(255, 0, 128, 0.1), inset 0 0 12px rgba(255, 0, 128, 0.08);
    color: #ffffff;
}

/* Achievements / Vulnerabilities / Certificates Section styling */
.achievements-section, .vulnerabilities-section, .certificates-section {
    margin-bottom: 2rem;
}

.achievements-list, .vulnerabilities-list, .certificates-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-card {
    padding: 1.5rem !important;
    text-align: right;
}

.achievement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.achievement-badge {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--laser-cyan);
    color: var(--laser-cyan);
    padding: 0.2rem 0.5rem;
    font-size: 0.72rem;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.2);
}

.achievement-badge--magenta {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--laser-magenta);
    color: var(--laser-magenta);
    box-shadow: 0 0 6px rgba(255, 0, 128, 0.2);
}

.achievement-date {
    font-size: 0.8rem;
    color: var(--laser-cyan-mid);
}

.achievement-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.achievement-entity {
    font-size: 0.82rem;
    color: var(--laser-cyan-pale);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.achievement-desc {
    font-size: 0.88rem;
    color: rgba(160, 240, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.achievement-status {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px dashed rgba(0, 255, 255, 0.1);
    padding-top: 0.6rem;
    font-size: 0.75rem;
}

.achievement-card--magenta .achievement-status {
    border-top-color: rgba(255, 0, 128, 0.15);
}

.status-dot {
    width: 5px;
    height: 5px;
    background-color: var(--laser-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--laser-cyan);
}

.status-dot--magenta {
    background-color: var(--laser-magenta);
    box-shadow: 0 0 6px var(--laser-magenta);
}

.text-cyan {
    color: var(--laser-cyan);
}

.text-magenta {
    color: var(--laser-magenta);
}

/* Experience Section styling */
.experience-section {
    margin-bottom: 2rem;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience-card {
    padding: 1.5rem !important;
    text-align: right;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.experience-duration {
    font-size: 0.8rem;
    color: var(--laser-cyan-mid);
}

.experience-type {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--laser-cyan);
    color: var(--laser-cyan);
    padding: 0.2rem 0.5rem;
    font-size: 0.72rem;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.2);
}

.experience-card--magenta .experience-type {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--laser-magenta);
    color: var(--laser-magenta);
    box-shadow: 0 0 6px rgba(255, 0, 128, 0.2);
}

.experience-role {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.experience-company {
    font-size: 0.82rem;
    color: var(--laser-cyan-pale);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.experience-desc {
    font-size: 0.88rem;
    color: rgba(160, 240, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.experience-status {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px dashed rgba(0, 255, 255, 0.1);
    padding-top: 0.6rem;
    font-size: 0.75rem;
}

.experience-card--magenta .experience-status {
    border-top-color: rgba(255, 0, 128, 0.15);
}

/* About Us Section styling */
.about-section {
    margin-bottom: 2rem;
}

.about-card {
    text-align: right;
    line-height: 1.7;
    padding: 1.5rem !important;
}

.about-text {
    font-size: 0.84rem;
    color: rgba(160, 240, 255, 0.75);
}

.about-subtitle {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--laser-cyan-mid);
    margin-top: 1.25rem;
    margin-bottom: 0.6rem;
}

.about-list {
    list-style-type: square;
    padding-right: 1.25rem;
    color: var(--laser-cyan-pale);
    line-height: 1.7;
}

.about-list li {
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
}

.about-highlight {
    font-size: 0.86rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 1.25rem;
    border-right: 3px solid var(--laser-magenta);
    padding-right: 0.65rem;
}

/* Footer Section styling */
.profile-footer {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(0, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.profile-footer .laser-mono {
    font-size: 0.7rem;
    color: var(--laser-cyan-dim);
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.8rem;
    color: var(--laser-chrome-dark);
}

/* Responsive adjustments for smaller devices */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem 0.9rem;
    }
    
    .laser-chrome-display {
        font-size: 1.75rem;
    }
    
    /* Keeping the 2-column grid structure responsive */
    .social-links-grid {
        gap: 10px;
    }
    
    .ad-image-container {
        height: 140px;
    }
}
