* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0c12;
    font-family: 'Inter', sans-serif;
    color: #e0e4ff;
    overflow-x: hidden;
    position: relative;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 102, 0, 0.3);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 12, 18, 0.8);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: #ff6600;
    text-shadow: 0 0 10px #ff6600;
}

.logo-text {
    background: linear-gradient(135deg, #fff, #ff6600, #00aaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: #b8c7ff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav a:hover {
    color: #ff6600;
    text-shadow: 0 0 5px #ff6600;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6600;
    transition: 0.3s;
}

.nav a:hover::before {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ff6600;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    gap: 60px;
    padding: 60px 0;
}

.hero-content {
    flex: 1;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: 'Fira Code', monospace;
}

.status-badge i {
    font-size: 10px;
    color: #ff6600;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.glitch-wrapper {
    margin: 20px 0;
}

.main-glitch {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #ff6600, #00aaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    animation: glitch-skew 3s infinite;
}

.main-glitch::before,
.main-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff, #ff6600, #00aaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(24px, 550px, 36px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.main-glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); transform: skew(0.2deg); }
    20% { clip: rect(85px, 9999px, 140px, 0); transform: skew(0.4deg); }
    40% { clip: rect(43px, 9999px, 76px, 0); transform: skew(0.1deg); }
    60% { clip: rect(12px, 9999px, 58px, 0); transform: skew(0.3deg); }
    80% { clip: rect(67px, 9999px, 112px, 0); transform: skew(0.25deg); }
    100% { clip: rect(28px, 9999px, 92px, 0); transform: skew(0.15deg); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); transform: skew(0.07deg); }
    50% { clip: rect(34px, 9999px, 77px, 0); transform: skew(0.3deg); }
    100% { clip: rect(28px, 9999px, 92px, 0); transform: skew(0.18deg); }
}

@keyframes glitch-skew {
    0%, 100% { transform: skew(0deg); }
    95% { transform: skew(0deg); }
    96% { transform: skew(1deg); }
    97% { transform: skew(-1deg); }
    98% { transform: skew(0.5deg); }
}

.typewriter-container {
    font-size: 48px;
    font-weight: 700;
    margin-top: 16px;
    font-family: 'Fira Code', monospace;
    min-height: 100px;
}

.typewriter-text {
    background: linear-gradient(135deg, #ff6600, #00aaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cursor-blink {
    display: inline-block;
    width: 4px;
    background: #ff6600;
    animation: blink 1s infinite;
    margin-left: 4px;
}

.hero-description {
    font-size: 18px;
    color: #b0c4ff;
    margin: 24px 0;
    line-height: 1.6;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6600, #00aaff);
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
    font-family: 'Fira Code', monospace;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #ff6600;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ff6600;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    color: #ff6600;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Fira Code', monospace;
}

.btn-secondary:hover {
    background: rgba(255, 102, 0, 0.1);
    box-shadow: 0 0 10px #ff6600;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.terminal-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
}

.terminal-header {
    background: rgba(255, 102, 0, 0.1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    margin-left: 8px;
    color: #ff6600;
}

.terminal-body {
    padding: 20px;
    color: #0f0;
}

.terminal-line {
    margin: 4px 0;
    opacity: 0;
    animation: fadeInUp 0.3s forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(10px); }
}

.terminal-line.success {
    color: #ff6600;
    text-shadow: 0 0 5px #ff6600;
}

.blink-line {
    animation: blink 1s infinite;
}

.pepe-mascot {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="%2333aa33"/><circle cx="35" cy="40" r="5" fill="white"/><circle cx="65" cy="40" r="5" fill="white"/><circle cx="35" cy="40" r="2" fill="black"/><circle cx="65" cy="40" r="2" fill="black"/><path d="M40 65 Q50 75 60 65" stroke="black" fill="none" stroke-width="3"/><path d="M30 55 L35 60 M70 55 L65 60" stroke="black" stroke-width="2"/></svg>') no-repeat center;
    background-size: contain;
    filter: drop-shadow(0 0 10px #ff6600);
    animation: pepeFloat 3s ease-in-out infinite;
    cursor: pointer;
}

@keyframes pepeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 12px;
    font-family: 'Fira Code', monospace;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #ff6600, #00aaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #8aa0cc;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(10, 20, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 24px;
    padding: 32px;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: #ff6600;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-family: 'Fira Code', monospace;
}

.feature-card p {
    color: #b0c4ff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-status {
    font-size: 12px;
    color: #ff6600;
    font-family: 'Fira Code', monospace;
    letter-spacing: 1px;
}

.pricing {
    padding: 60px 0 100px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(10, 20, 35, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 32px;
    padding: 32px;
    width: 320px;
    transition: 0.3s;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid #ff6600;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6600;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-save {
    text-align: center;
    font-size: 12px;
    color: #ff6600;
    margin-top: -16px;
    margin-bottom: 16px;
    font-family: 'Fira Code', monospace;
}

.pricing-name {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin: 20px 0;
    font-family: 'Fira Code', monospace;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: #ff6600;
    margin-bottom: 24px;
}

.pricing-price span {
    font-size: 16px;
    color: #8aa0cc;
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
}

.pricing-features li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0c4ff;
}

.pricing-features i.fa-check { color: #0f0; }
.pricing-features i.fa-times { color: #f00; }

.pricing-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #ff6600;
    border-radius: 40px;
    color: #ff6600;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Fira Code', monospace;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, #ff6600, #00aaff);
    color: #000;
    border: none;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px #ff6600;
}

.interactive-terminal {
    padding: 60px 0;
}

.terminal-full {
    background: #000;
    border: 1px solid #ff6600;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
}

.terminal-full-header {
    background: #111;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #ff6600;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: #ff6600;
}

.terminal-full-body {
    padding: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.terminal-output {
    flex: 1;
    color: #0f0;
    margin-bottom: 20px;
}

.terminal-output div {
    margin: 8px 0;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #333;
    padding-top: 16px;
}

.prompt {
    color: #ff6600;
    font-weight: 600;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #0f0;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    outline: none;
}

.hacker-rush {
    background: linear-gradient(135deg, #0a0c12, #0f111a);
    border-radius: 48px;
    padding: 60px 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.hacker-rush-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(255, 102, 0, 0.03) 0px, rgba(255, 102, 0, 0.03) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
}

.hacker-rush-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hacker-rush-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 102, 0, 0.15);
    border: 1px solid rgba(255, 102, 0, 0.4);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 14px;
    font-family: 'Fira Code', monospace;
    color: #ff6600;
    margin-bottom: 24px;
}

.hacker-rush-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600, #ff00cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    font-family: 'Fira Code', monospace;
    text-transform: uppercase;
}

.hacker-rush-desc {
    color: #8aa0cc;
    font-size: 16px;
    margin-bottom: 40px;
}

.hacker-rush-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.hacker-stat {
    text-align: center;
}

.hacker-stat-label {
    display: block;
    font-size: 12px;
    color: #8aa0cc;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.hacker-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #ff6600;
    text-shadow: 0 0 10px #ff6600;
}

.hacker-code {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #ff6600;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    font-family: 'Fira Code', monospace;
    font-size: 28px;
    letter-spacing: 4px;
    display: inline-block;
}

.code-prompt {
    color: #ff6600;
    margin-right: 12px;
}

.code-text {
    color: #0f0;
    text-shadow: 0 0 5px #0f0;
}

.hacker-input-line {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hacker-prompt {
    color: #ff6600;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    align-self: center;
}

.hacker-input {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #ff6600;
    border-radius: 40px;
    padding: 12px 24px;
    color: #0f0;
    font-family: 'Fira Code', monospace;
    font-size: 16px;
    width: 280px;
    outline: none;
    text-align: center;
}

.hacker-input:focus {
    box-shadow: 0 0 15px #ff6600;
}

.hack-btn {
    background: linear-gradient(135deg, #ff6600, #ff00cc);
    border: none;
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Fira Code', monospace;
}

.hack-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff6600;
}

.hacker-message {
    color: #ff6600;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 40px;
}

.hacker-progress {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 102, 0, 0.2);
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
}

.hacker-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff6600, #ff00cc);
    border-radius: 20px;
    transition: width 0.3s ease;
}

footer {
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #ff6600;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8aa0cc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6600;
}

.footer-copyright {
    color: #6c86a3;
    font-size: 14px;
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    background: repeating-linear-gradient(0deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.1) 1px, transparent 1px, transparent 2px);
    opacity: 0;
    transition: 0.1s;
}

.sound-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: #ff6600;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.1s;
    z-index: 999;
    box-shadow: 0 0 10px #ff6600;
}

.sound-indicator.active {
    opacity: 1;
    animation: soundPulse 0.3s ease-out;
}

@keyframes soundPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #0a1424, #0a0c12);
    border: 2px solid #ff6600;
    border-radius: 24px;
    width: 90%;
    max-width: 450px;
    animation: modalGlow 0.5s ease-out;
}

@keyframes modalGlow {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 102, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.modal-header i {
    font-size: 28px;
    color: #ff6600;
}

.modal-header h3 {
    flex: 1;
    margin: 0;
    font-family: 'Fira Code', monospace;
    font-size: 18px;
}

.modal-close {
    font-size: 28px;
    cursor: pointer;
    color: #ff6600;
    transition: 0.3s;
}

.modal-close:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 24px;
}

.modal-plan {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    color: #ff6600;
    font-family: 'Fira Code', monospace;
}

.modal-price {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin: 8px 0;
}

.modal-period {
    text-align: center;
    color: #8aa0cc;
    margin-bottom: 24px;
}

.modal-body input {
    width: 100%;
    padding: 12px 16px;
    margin: 8px 0;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #ff6600;
    border-radius: 12px;
    color: #fff;
    outline: none;
}

.modal-body input:focus {
    box-shadow: 0 0 10px #ff6600;
}

.modal-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 102, 0, 0.3);
    margin-top: 16px;
    font-weight: 700;
}

.modal-total span:last-child {
    color: #ff6600;
    font-size: 20px;
}

.modal-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6600, #00aaff);
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Fira Code', monospace;
    margin-top: 8px;
}

.modal-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px #ff6600;
}

.modal-note {
    text-align: center;
    font-size: 11px;
    color: #6c86a3;
    margin-top: 16px;
}

@media (max-width: 968px) {
    .hero { flex-direction: column; text-align: center; }
    .main-glitch { font-size: 48px; }
    .typewriter-container { font-size: 32px; }
    .section-title { font-size: 32px; }
    .pricing-card.popular { transform: scale(1); }
    .container { padding: 0 20px; }
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .cta-buttons { justify-content: center; }
    .pepe-mascot { width: 70px; height: 70px; bottom: -10px; right: -10px; }
    .hacker-rush-title { font-size: 32px; }
    .hacker-code { font-size: 18px; padding: 16px; }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .terminal-full-body { font-size: 12px; }
    .pricing-grid { gap: 40px; }
    .pricing-card { width: 100%; max-width: 320px; }
    .hacker-rush-stats { gap: 20px; }
    .hacker-stat-value { font-size: 20px; }
}
/* Info Modal Styles */
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.info-modal-content {
    background: linear-gradient(135deg, #0a0c12, #0f111a);
    border: 2px solid #ff6600;
    border-radius: 32px;
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalGlow 0.4s ease-out;
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.3);
}

.info-modal-header {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 102, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.info-modal-header i {
    font-size: 32px;
    color: #ff6600;
}

.info-modal-header h2 {
    flex: 1;
    margin: 0;
    font-family: 'Fira Code', monospace;
    font-size: 24px;
    background: linear-gradient(135deg, #ff6600, #00aaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.info-modal-close {
    font-size: 32px;
    cursor: pointer;
    color: #ff6600;
    transition: 0.3s;
}

.info-modal-close:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px #ff6600;
}

.info-modal-body {
    padding: 28px;
}

.info-section {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 16px;
    border-left: 3px solid #ff6600;
}

.info-section i {
    font-size: 28px;
    color: #ff6600;
    margin-top: 4px;
}

.info-section h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #ff6600;
    font-family: 'Fira Code', monospace;
}

.info-section p {
    margin: 0;
    color: #b0c4ff;
    line-height: 1.5;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 20px;
    transition: 0.3s;
}

.contact-item:hover {
    background: rgba(255, 102, 0, 0.15);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 32px;
    color: #ff6600;
    width: 50px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    color: #ff6600;
    margin-bottom: 4px;
    font-family: 'Fira Code', monospace;
}

.contact-item span {
    display: block;
    font-size: 14px;
    color: #b0c4ff;
    margin-bottom: 8px;
}

.contact-item a {
    color: #00aaff;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Fira Code', monospace;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #ff6600;
    text-shadow: 0 0 5px #ff6600;
}

.info-modal-footer {
    padding: 20px 28px;
    border-top: 1px solid rgba(255, 102, 0, 0.3);
    text-align: center;
}

.info-modal-btn {
    background: linear-gradient(135deg, #ff6600, #00aaff);
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Fira Code', monospace;
}

.info-modal-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff6600;
}