/* 
   ALADINCASH CYBER HACKER THEME v2.0
   Ultra Clean Terminal + Perfect Mobile Responsive
   Matrix Green Professional Hacker Style
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto+Mono:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Mono', monospace;
    background: #000;
    color: #00ff41;
    overflow-x: hidden;
    line-height: 1.7;
}

/* CLEAN MATRIX BACKGROUND */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 65, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 65, 0.06) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
}

/* TERMINAL CURSOR */
@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* FIXED HEADER TERMINAL */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 20, 0, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 2px solid #00ff41;
    box-shadow: 0 4px 30px rgba(0, 255, 65, 0.2);
}

.head-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-link img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 15px #00ff41);
    transition: all 0.3s ease;
}

.logo-link:hover img {
    filter: drop-shadow(0 0 25px #00ff41);
    transform: scale(1.05);
}

.head-link {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.head-link a {
    color: #00ff41;
    text-decoration: none;
    padding: 10px 16px;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid #00ff41;
    border-radius: 4px;
    background: rgba(0, 255, 65, 0.08);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.head-link a:hover {
    background: #00ff41;
    color: #000;
    box-shadow: 0 0 20px #00ff41;
    transform: translateY(-2px);
}

/* SOCIAL SIDEBAR CLEAN */
.social-sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: rgba(0, 20, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid #00ff41;
    border-radius: 8px;
    padding: 20px 12px;
    box-shadow: 0 8px 32px rgba(0, 255, 65, 0.15);
    transition: all 0.3s ease;
}

.social-sidebar.left {
    left: 20px;
}

.social-sidebar.right {
    right: 20px;
}

.social-sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-sidebar a {
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 65, 0.1);
    border: 1.5px solid #00ff41;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-sidebar a:hover {
    background: #00ff41;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 255, 65, 0.4);
}

.social-sidebar svg {
    width: 22px;
    height: 22px;
    fill: #00ff41;
    transition: all 0.3s ease;
}

.social-sidebar a:hover svg {
    fill: #000;
}

/* MAIN CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 60px;
}

/* SECTIONS */
.content-section {
    margin-bottom: 90px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PERFECT RESPONSIVE CARDS */
.content-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: rgba(0, 25, 0, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    padding: 45px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 255, 65, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: 'HACKED';
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    color: rgba(0, 255, 65, 0.6);
    letter-spacing: 2px;
}

.content-card:hover {
    border-color: #00ff41;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(0, 255, 65, 0.3);
    transform: translateY(-8px);
}

/* IMAGE PERFECT RESPONSIVE */
.content-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 65, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.content-card:hover img {
    border-color: #00ff41;
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.3);
    transform: scale(1.03);
}

/* TEXT TERMINAL */
.card-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 800;
    color: #00ff41;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-text p {
    font-size: 16px;
    color: rgba(0, 255, 65, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* HACK BUTTON */
.cta-button {
    display: inline-block;
    background: transparent;
    color: #00ff41;
    padding: 15px 35px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border: 2px solid #00ff41;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
}

.cta-button::before {
    content: 'CLICK_TO_HACK';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: #00ff41;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: left 0.4s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    color: #000;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.6);
}

.cta-button:hover::before {
    left: 0;
}

/* ULTRA RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .head-content {
        padding: 12px 15px;
    }

    .container {
        padding: 100px 15px 60px;
    }
}

@media (max-width: 1024px) {
    .content-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 25px;
        text-align: center;
    }

    .content-card.reverse {
        grid-template-columns: 1fr;
    }

    .content-card img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    header {
        backdrop-filter: blur(15px);
    }

    .head-content {
        flex-direction: column;
        gap: 12px;
        padding: 10px 15px;
    }

    .logo-link img {
        width: 150px;
    }

    .head-link {
        gap: 3px;
        justify-content: center;
    }

    .head-link a {
        padding: 8px 12px;
        font-size: 11px;
    }

    .social-sidebar {
        display: none;
    }

    .container {
        padding: 90px 12px 40px;
    }

    .content-card {
        padding: 25px 20px;
        gap: 25px;
        margin-bottom: 60px;
    }

    .content-card img {
        height: 220px;
    }

    .card-text h2 {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }

    .card-text p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .logo-link img {
        width: 140px;
    }

    .head-link a {
        padding: 7px 10px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .content-card img {
        height: 200px;
        border-radius: 8px;
    }

    .card-text h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* PERFORMANCE */
.content-section:nth-child(even) {
    animation-delay: 0.1s;
}

.content-card img {
    image-rendering: -webkit-optimize-contrast;
}

/* 
   CYBER HACKER TERMINAL TOOLS v3.0 - FULL SECURITY SCAN
   IP + Device + Browser + Battery + Location Tracker
   Add to existing style.css (updates previous version)
*/

.terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: terminalFadeIn 0.4s ease;
}

.terminal-overlay.active {
    display: flex;
}

@keyframes terminalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.terminal-window {
    width: 95%;
    max-width: 900px;
    max-height: 95vh;
    background: rgba(0, 25, 0, 0.99);
    border: 3px solid #00ff41;
    border-radius: 16px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(0, 255, 65, 0.5),
        inset 0 0 30px rgba(0, 255, 65, 0.05);
    overflow: hidden;
    font-family: 'Roboto Mono', monospace;
    animation: terminalGlitchIn 0.6s ease;
}

@keyframes terminalGlitchIn {
    0% { transform: translateY(-60px) scale(0.9); opacity: 0; }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(3px, -3px); }
    60% { transform: translate(-2px, 2px); }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

.window-header {
    background: linear-gradient(90deg, rgba(0, 50, 0, 0.9), rgba(0, 80, 0, 0.9));
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid #00ff41;
    position: relative;
    overflow: hidden;
}

.window-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
    animation: scanline 3s infinite;
}

@keyframes scanline {
    0% { left: -100%; }
    100% { left: 100%; }
}

.window-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.close-btn { background: #ff4757; }
.minimize-btn { background: #ff922b; }
.maximize-btn { background: #2ed573; }

.control-btn:hover {
    transform: scale(1.3) translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.6);
}

.window-title {
    flex: 1;
    font-family: 'Orbitron', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #00ff41;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff41;
}

.terminal-body {
    height: 550px;
    overflow-y: auto;
    padding: 30px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 65, 0.02) 0%, transparent 50%);
    position: relative;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: rgba(0, 25, 0, 0.5);
}

.terminal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 65, 0.4);
    border-radius: 4px;
}

.terminal-output {
    white-space: pre-wrap;
    font-size: 14px;
    line-height: 1.7;
    color: #00ff41;
    text-shadow: 0 0 4px rgba(0, 255, 65, 0.2);
    margin-bottom: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    animation: typeEffect 1.5s ease-out;
}

@keyframes typeEffect {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.result-highlight {
    background: rgba(0, 255, 65, 0.1);
    padding: 12px;
    border-left: 4px solid #00ff41;
    border-radius: 4px;
    margin: 10px 0;
}

.warning {
    color: #ff6b7a !important;
    border-left-color: #ff6b7a !important;
}

.success {
    color: #00ff88 !important;
    border-left-color: #00ff88 !important;
}

.prompt-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 20px;
}

.prompt {
    color: #00ff88;
    font-weight: 600;
    white-space: nowrap;
    font-size: 14px;
}

.prompt-input {
    background: transparent;
    border: none;
    color: #00ff41;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    flex: 1;
    text-shadow: 0 0 4px rgba(0, 255, 65, 0.3);
    padding: 5px 0;
}

.prompt-cursor {
    display: inline-block;
    width: 14px;
    height: 22px;
    background: linear-gradient(#00ff41, #00ff88);
    border-radius: 2px;
    animation: blink 0.8s infinite;
    margin-left: 3px;
    box-shadow: 0 0 8px #00ff41;
}

/* TOOLS BUTTON UPGRADED */
.tools-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, rgba(0, 25, 0, 0.95), rgba(0, 50, 0, 0.9));
    border: 3px solid #00ff41;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 15px 35px rgba(0, 255, 65, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.tools-btn:hover {
    transform: translateY(-10px) scale(1.1) rotate(360deg);
    box-shadow: 
        0 25px 50px rgba(0, 255, 65, 0.5),
        0 0 40px rgba(0, 255, 65, 0.3);
    background: linear-gradient(145deg, rgba(0, 255, 65, 0.15), rgba(0, 100, 0, 0.9));
}

.tools-icon {
    font-size: 28px;
    color: #00ff41;
    text-shadow: 0 0 15px #00ff41;
    margin-bottom: 2px;
}

.tools-label {
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    color: #00ff88;
    letter-spacing: 1px;
    font-weight: 700;
}

/* BATTERY & LOCATION INDICATORS */
.battery-low { color: #ff4757 !important; }
.battery-medium { color: #ff922b !important; }
.battery-high { color: #00ff88 !important; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .terminal-window {
        width: 98%;
        height: 92vh;
        margin: 10px;
    }
    
    .terminal-body {
        height: 450px;
        padding: 25px 20px;
    }
    
    .tools-btn {
        bottom: 20px;
        right: 20px;
        width: 65px;
        height: 65px;
    }
    
    .tools-icon { font-size: 24px; }
}

@media (max-width: 480px) {
    .terminal-body {
        height: 400px;
        padding: 20px 15px;
        font-size: 13px;
    }
    
    .window-header { padding: 15px 20px; }
}

/* 
   ALADINCASH CYBER HACKER FOOTER v2.0
   Terminal Style Footer - Perfect Responsive
   Add to existing style.css
*/

/* FOOTER TERMINAL */
footer {
    background: rgba(0, 15, 0, 0.98);
    backdrop-filter: blur(25px);
    border-top: 2px solid #00ff41;
    box-shadow: 0 -8px 40px rgba(0, 255, 65, 0.2);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 30px;
}

/* TERMINAL STATUS BAR */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    font-family: 'Orbitron', monospace;
}

.status-bar {
    display: flex;
    gap: 20px;
    align-items: center;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff41;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff41;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    color: #00ff41;
    letter-spacing: 3px;
    text-shadow: 0 0 15px #00ff41;
}

/* MAIN FOOTER GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #00ff41;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00ff41;
    box-shadow: 0 0 8px #00ff41;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(0, 255, 65, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-section a::before {
    content: '>';
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    transform: translateX(5px);
}

.footer-section a:hover::before {
    opacity: 1;
}

/* CONTACT INFO */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(0, 255, 65, 0.8);
}

.contact-icon {
    width: 24px;
    height: 24px;
    fill: #00ff41;
    filter: drop-shadow(0 0 5px #00ff41);
}

/* BOTTOM BAR */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    text-align: center;
    font-size: 13px;
    color: rgba(0, 255, 65, 0.6);
}

.footer-bottom a {
    color: #00ff41;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-shadow: 0 0 10px #00ff41;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 15px 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .status-bar {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .status-item {
        font-size: 12px;
    }

    .footer-section h3 {
        font-size: 15px;
    }

    .footer-section a {
        font-size: 13px;
    }
}

/* HACKER TERMINAL GLOW */
footer:hover {
    box-shadow: 0 -12px 60px rgba(0, 255, 65, 0.3);
}