* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #7c3aed;
            --secondary: #2563eb;
            --dark: #0f172a;
            --light: #f1f5f9;
            --accent: #ec4899;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
            color: var(--light);
            line-height: 1.6;
            min-height: 100vh;
        }

        header {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid var(--primary);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(124, 58, 237, 0.2);
            border-radius: 50%;
            border: 1px solid rgba(124, 58, 237, 0.4);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
        }

        .social-links img {
            width: 20px;
            height: 20px;
            filter: brightness(0) invert(1);
        }

        h1 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .hero {
            text-align: center;
            padding: 3rem 1rem;
            margin-bottom: 3rem;
        }

        .fortnite-profile {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(37, 99, 235, 0.2));
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .fortnite-profile h2 {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            margin-bottom: 1.5rem;
            color: var(--light);
        }

        .profile-btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(124, 58, 237, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .profile-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
        }

        .profile-btn:active {
            transform: translateY(-1px) scale(1.02);
        }

        .hero h2 {
            font-size: clamp(1.2rem, 3vw, 2rem);
            margin-bottom: 1rem;
            color: var(--light);
        }

        .hero p {
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
        }

        .maps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .map-card {
            background: rgba(30, 41, 59, 0.6);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(124, 58, 237, 0.3);
            display: flex;
            flex-direction: column;
        }

        .map-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
        }

        .map-image {
            width: 100%;
            height: 200px;
            position: relative;
            overflow: hidden;
            background: #1e293b;
        }

        .map-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .map-card:hover .map-image img {
            transform: scale(1.05);
        }

        .map-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.7) 100%);
            z-index: 1;
        }

        .map-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .map-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--light);
        }

        .map-content p {
            color: #94a3b8;
            margin-bottom: auto;
            font-size: 0.95rem;
            flex-grow: 1;
        }

        .map-code {
            background: rgba(15, 23, 42, 0.8);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            border: 1px solid var(--primary);
        }

        .code-text {
            font-family: 'Courier New', monospace;
            color: var(--accent);
            font-weight: bold;
            letter-spacing: 1px;
        }

        .copy-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .copy-btn:hover {
            background: var(--accent);
            transform: scale(1.05);
        }

        .copy-btn:active {
            transform: scale(0.95);
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            background: rgba(124, 58, 237, 0.2);
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid rgba(124, 58, 237, 0.4);
        }

        .read-more-btn {
            display: block;
            margin: 1rem 0;
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            text-align: center;
        }

        .read-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
        }

        .read-more-btn:active {
            transform: translateY(0);
        }

        footer {
            text-align: center;
            padding: 2rem;
            color: #64748b;
            border-top: 1px solid rgba(124, 58, 237, 0.3);
        }

        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .notification.show {
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .maps-grid {
                grid-template-columns: 1fr;
            }

            header {
                padding: 1rem;
            }

            .header-content {
                justify-content: center;
            }

            .hero {
                padding: 2rem 1rem;
            }
        }