/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #0a0a0a;
    color: #ccfaff;
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Animated Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 35%, #0f0f23 100%);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.cyber-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #00ffcc;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.cyber-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.05), transparent);
    animation: navScan 3s linear infinite;
}

@keyframes navScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.nav-logo .glitch-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #00ffcc;
    text-shadow: 0 0 20px #00ffcc, 0 0 40px rgba(0, 255, 204, 0.5);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ccfaff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #00ffcc;
    border-color: #00ffcc;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.4), inset 0 0 25px rgba(0, 255, 204, 0.1);
    text-shadow: 0 0 10px #00ffcc;
    transform: translateY(-2px);
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    animation: glitch 3s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0040;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05) 0%, transparent 50%, rgba(255, 107, 107, 0.05) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #00ffcc;
    text-shadow: 0 0 30px #00ffcc, 0 0 60px rgba(0, 255, 204, 0.5);
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #ff6b6b;
    margin-bottom: 25px;
    text-shadow: 0 0 15px #ff6b6b;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffcc, #00d4aa);
    color: #0a0a0a;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 204, 0.5);
    background: linear-gradient(135deg, #00d4aa, #00ffcc);
}

.btn-secondary {
    background: transparent;
    color: #ccfaff;
    border: 2px solid #ccfaff;
    box-shadow: 0 0 15px rgba(204, 250, 255, 0.2);
}

.btn-secondary:hover {
    background: #ccfaff;
    color: #0a0a0a;
    box-shadow: 0 10px 25px rgba(204, 250, 255, 0.4);
    transform: translateY(-3px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0); }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 204, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 204, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.3);
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, #00ffcc, #00d4aa);
    border-radius: 50%;
    box-shadow: 0 0 30px #00ffcc, 0 0 60px rgba(0, 255, 204, 0.3);
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: 2.5s;
}

.floating-element:nth-child(3) {
    bottom: 25%;
    left: 55%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
    75% { transform: translateY(-25px) rotate(270deg); }
}

/* Section Titles */
.section-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #00ffcc;
    text-align: center;
    margin-bottom: 80px;
    text-shadow: 0 0 20px #00ffcc;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #ff6b6b;
    border-radius: 1px;
}

/* Mirror Section */
.mirror-section {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
}

.mirror-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 204, 0.02) 0%, transparent 50%, rgba(255, 107, 107, 0.02) 100%);
}

.mirror-box {
    background: rgba(20, 20, 40, 0.9);
    border: 2px solid #00ffcc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 255, 204, 0.3), inset 0 0 50px rgba(0, 255, 204, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
}

.mirror-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.terminal-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #00ffcc;
    position: relative;
}

.terminal-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.terminal-dot.red { 
    background: #ff5555; 
    box-shadow: 0 0 15px #ff5555;
}
.terminal-dot.yellow { 
    background: #ffff55; 
    box-shadow: 0 0 15px #ffff55;
}
.terminal-dot.green { 
    background: #55ff55; 
    box-shadow: 0 0 15px #55ff55;
}

.terminal-title {
    font-family: 'IBM Plex Mono', monospace;
    color: #00ffcc;
    margin-left: 25px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.mirror-content {
    padding: 40px;
}

.mirror-link-container {
    margin-bottom: 40px;
}

.mirror-link {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    font-family: 'IBM Plex Mono', monospace;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mirror-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.1), transparent);
    transition: left 0.5s ease;
}

.mirror-link:hover::before {
    left: 100%;
}

.mirror-link:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.3);
    transform: translateY(-2px);
}

.link-prefix {
    color: #ff6b6b;
    margin-right: 8px;
    font-weight: 600;
}

.link-url {
    color: #00ffcc;
    flex: 1;
    word-break: break-all;
    font-size: 0.95rem;
}

.copy-btn {
    background: linear-gradient(135deg, #00ffcc, #00d4aa);
    color: #0a0a0a;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #00d4aa, #00ffcc);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.4);
}

.mirror-status {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.status-dot.online { 
    background: #55ff55; 
    box-shadow: 0 0 15px #55ff55;
}
.status-dot.verified { 
    background: #00ffcc; 
    box-shadow: 0 0 15px #00ffcc;
}
.status-dot.secure { 
    background: #ffff55; 
    box-shadow: 0 0 15px #ffff55;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* About Section */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: rgba(20, 20, 40, 0.7);
    padding: 50px 35px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 15px 40px rgba(0, 255, 204, 0.3);
    transform: translateY(-8px);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 10px currentColor);
}

.about-card h3 {
    color: #00ffcc;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-card p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.05rem;
}

/* Registration Section */
.registration-section {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.step-card {
    background: rgba(20, 20, 40, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #333;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 20px 50px rgba(0, 255, 204, 0.3);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    background: linear-gradient(135deg, #00ffcc, #00d4aa);
    color: #0a0a0a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.step-content h3 {
    color: #00ffcc;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.step-content p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.step-image {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.step-image:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.3);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.step-image:hover img {
    transform: scale(1.05);
}

/* Security Stack Section */
.security-section {
    padding: 120px 0;
    position: relative;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.security-feature {
    background: rgba(20, 20, 40, 0.7);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.security-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 204, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-feature:hover::before {
    opacity: 1;
}

.security-feature:hover {
    border-color: #00ffcc;
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 15px currentColor);
}

.security-feature h3 {
    color: #00ffcc;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.security-feature p {
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1rem;
}

/* Monero Section */
.monero-section {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.monero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.monero-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.monero-card {
    background: rgba(20, 20, 40, 0.8);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.4s ease;
    position: relative;
}

.monero-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 10px 25px rgba(0, 255, 204, 0.2);
    transform: translateY(-3px);
}

.monero-card h3 {
    color: #00ffcc;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.monero-card p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.recommended-wallets {
    background: rgba(20, 20, 40, 0.8);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #333;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.recommended-wallets h3 {
    color: #00ffcc;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.wallet-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wallet-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #444;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.wallet-item:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
}

.wallet-item strong {
    color: #00ffcc;
}

/* Escrow & Vendors Section */
.escrow-section {
    padding: 120px 0;
    position: relative;
}

.escrow-content {
    max-width: 1000px;
    margin: 0 auto;
}

.escrow-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.process-step {
    background: rgba(20, 20, 40, 0.7);
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
}

.process-step:hover {
    border-color: #00ffcc;
    box-shadow: 0 10px 25px rgba(0, 255, 204, 0.2);
    transform: translateY(-5px);
}

.step-icon {
    background: linear-gradient(135deg, #00ffcc, #00d4aa);
    color: #0a0a0a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
}

.process-step h3 {
    color: #00ffcc;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .monero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .recommended-wallets {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .mirror-status {
        gap: 20px;
    }
    
    .about-grid,
    .registration-steps,
    .security-features,
    .monero-info,
    .escrow-process {
        grid-template-columns: 1fr;
    }
    
    .step-card,
    .about-card,
    .security-feature {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    body {
        min-width: auto;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo .glitch-text {
        font-size: 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .mirror-content,
    .step-card,
    .about-card {
        padding: 25px 20px;
    }
    
    .mirror-link {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .copy-btn {
        margin-left: 0;
        width: 100%;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #00ffcc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00d4aa;
}

/* Selection Styling */
::selection {
    background: rgba(0, 255, 204, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(0, 255, 204, 0.3);
    color: #ffffff;
}

