:root {
    --primary: #ff0000;
    --primary-dark: #b30000;
    --primary-light: #ff3333;
    --secondary: #0a0a0a;
    --accent: #00ffff;
    --accent-dark: #0088cc;
    --text: #ffffff;
    --text-dark: #cccccc;
    --neon-red: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
    --neon-blue: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    --glow-red: 0 0 15px rgba(255, 0, 0, 0.7);
    --glow-blue: 0 0 15px rgba(0, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--secondary);
    color: var(--text);
    font-family: 'Oxanium', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 20%),
        linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a1a 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(10, 0, 0, 0.9);
    border-bottom: 1px solid var(--primary);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(255, 0, 0, 0.2);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(10, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(255, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 100%;
}

.logo-icon {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--primary);
    margin-right: 12px;
    text-shadow: var(--neon-red);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0% { transform: scale(1); text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary); }
    50% { transform: scale(1.1); text-shadow: 0 0 15px var(--primary), 0 0 25px var(--primary), 0 0 35px var(--primary-light); }
    100% { transform: scale(1); text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary); }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--neon-red);
    letter-spacing: 1px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.logo-text span {
    color: var(--accent);
    font-size: clamp(10px, 2vw, 14px);
    display: block;
    font-weight: 400;
    text-shadow: var(--neon-blue);
    letter-spacing: 0.5px;
    word-wrap: break-word;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(12px, 2vw, 15px);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Russo One', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: block;
    word-wrap: break-word;
}

nav ul li a:hover {
    color: var(--primary);
    text-shadow: var(--neon-red);
    background: rgba(255, 0, 0, 0.1);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
    box-shadow: var(--neon-red);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--primary);
    text-shadow: var(--neon-red);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--primary);
    text-shadow: var(--neon-red);
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--accent);
    text-shadow: var(--neon-blue);
    margin-bottom: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    animation: fadeInUp 1s ease 0.2s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 35px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease 0.4s both;
    padding: 0 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: clamp(12px, 3vw, 16px) clamp(25px, 5vw, 40px);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
    border: 2px solid var(--primary-light);
    font-family: 'Russo One', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.6s both;
    z-index: 1;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6);
}

.cta-button:hover::before {
    left: 100%;
}

.floating-zombie {
    position: absolute;
    font-size: clamp(2rem, 4vw, 3rem);
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.7));
}

.zombie-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.zombie-2 {
    top: 65%;
    right: 5%;
    animation-delay: 2s;
}

.zombie-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 0 15px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--primary);
    display: inline-block;
    padding-bottom: 12px;
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    box-shadow: var(--neon-red);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-red);
    background: rgba(255, 0, 0, 0.2);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: var(--neon-red);
    font-family: 'Orbitron', sans-serif;
    line-height: 1.2;
    word-wrap: break-word;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: 5px;
    line-height: 1.3;
    word-wrap: break-word;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    height: 350px;
    min-width: 300px;
    background: linear-gradient(45deg, #1a1a1a, #0d0d0d);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), transparent);
    z-index: 1;
}

.custom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a0a0a, #0a0a1a);
    color: var(--primary);
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px var(--primary);
    z-index: 1;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.image-placeholder span {
    font-size: 1rem;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

.about-image:hover .custom-image {
    transform: scale(1.05);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: var(--neon-red);
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text);
    font-family: 'Russo One', sans-serif;
    letter-spacing: 0.8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-card p {
    line-height: 1.5;
    color: var(--text-dark);
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Server Info Section */
.server-info {
    background: linear-gradient(to bottom, rgba(20, 0, 0, 0.8), rgba(10, 0, 0, 0.9));
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    position: relative;
}

.server-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff0000' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.info-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.info-item h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Russo One', sans-serif;
    letter-spacing: 0.8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-item p {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.status-online {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 220px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #0d0d0d, #000);
    padding: 50px 0 20px;
    border-top: 1px solid var(--primary);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: var(--neon-red);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 20px;
}

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-family: 'Russo One', sans-serif;
    letter-spacing: 0.8px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-column p {
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-column ul li a i {
    margin-right: 8px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    flex-shrink: 0;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--neon-red);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
    }
    100% {
        transform: translateY(-100px) translateX(100px);
    }
}

/* Blood Effect */
.blood-splatter {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30,20 C35,15 45,15 50,20 C55,15 65,15 70,20 C75,25 75,35 70,40 C65,45 55,45 50,40 C45,45 35,45 30,40 C25,35 25,25 30,20 Z' fill='%23ff0000' fill-opacity='0.15'/%3E%3Cpath d='M20,60 C25,55 35,55 40,60 C45,65 45,75 40,80 C35,85 25,85 20,80 C15,75 15,65 20,60 Z' fill='%23ff0000' fill-opacity='0.15'/%3E%3Cpath d='M80,50 C85,45 95,45 90,50 C85,55 85,65 80,70 C75,75 65,75 70,70 C65,65 65,55 70,50 C75,45 85,45 80,50 Z' fill='%23ff0000' fill-opacity='0.15'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40,10 C45,5 55,5 60,10 C65,15 65,25 60,30 C55,35 45,35 40,30 C35,25 35,15 40,10 Z' fill='%23ff0000' fill-opacity='0.15'/%3E%3Cpath d='M10,40 C15,35 25,35 30,40 C35,45 35,55 30,60 C25,65 15,65 10,60 C5,55 5,45 10,40 Z' fill='%23ff0000' fill-opacity='0.15'/%3E%3Cpath d='M70,80 C75,75 85,75 80,80 C75,85 75,95 70,90 C65,85 65,75 70,80 Z' fill='%23ff0000' fill-opacity='0.15'/%3E%3C/svg%3E");
    background-size: 200px 200px, 150px 150px;
    opacity: 0.3;
    z-index: 1;
}

/* Connect Section */
.connect-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.connect-text {
    flex: 1;
    min-width: 300px;
}

.connect-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.connect-text code {
    background: rgba(255, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: monospace;
    display: inline-block;
    margin: 10px 0;
    border: 1px solid rgba(255, 0, 0, 0.5);
    word-break: break-all;
    font-size: 0.9rem;
}

/* Copy notification */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    font-family: 'Russo One', sans-serif;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.copy-notification.show {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-content, .connect-content {
        flex-direction: column;
    }
    
    .about-image, .connect-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }
    
    nav ul li {
        margin: 5px 10px 5px 0;
    }
    
    nav ul li a {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .stats {
        justify-content: center;
    }
    
    .stat-item {
        flex: 0 0 45%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul li {
        margin: 5px 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-card, .info-item {
        padding: 20px 15px;
    }
    
    .features-grid, .info-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .gallery-item {
        height: 180px;
    }
}