        @import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap');

        :root {
            --primary-color: #3a3a3a;
            --secondary-color: #c8d5c4;
            --accent-color: #c85a3a;
            --accent-warm: #b8826f;
            --text-dark: #3a3a3a;
            --text-light: #636e72;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #c8d5c4;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
            --font-header: 'Libre Baskerville', serif;
            --font-body: 'Open Sans', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background: linear-gradient(135deg, #c8d5c4 0%, #b8826f 100%);
            min-height: 100vh;
            color: var(--text-dark);
            line-height: 1.6;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            animation: fadeIn 0.6s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
            color: white;
            padding: 40px 30px;
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-lg);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .header h1 {
            font-family: var(--font-header);
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.3em;
            opacity: 0.95;
            font-weight: 300;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .card {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary-color);
        }

        .card-icon {
            font-size: 2.5em;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
        }

        .card-title {
            font-family: var(--font-header);
            font-size: 1.5em;
            font-weight: 700;
            color: var(--primary-color);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            padding: 12px;
            background: var(--bg-light);
            border-radius: 10px;
            transition: all 0.2s ease;
        }

        .info-item:hover {
            background: var(--secondary-color);
            transform: translateX(5px);
        }

        .info-icon {
            font-size: 1.5em;
            min-width: 30px;
            text-align: center;
        }

        .info-text {
            flex: 1;
        }

        .info-text strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        .wifi-card {
            background: linear-gradient(135deg, #c85a3a 0%, #b8826f 100%);
            color: white;
            text-align: center;
            padding: 40px;
        }

        .wifi-card .card-header {
            border-bottom-color: rgba(255,255,255,0.3);
            justify-content: center;
        }

        .wifi-card .card-title {
            color: white;
        }

        .wifi-box {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
        }

        .wifi-name {
            font-size: 1.8em;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            word-break: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        .wifi-password {
            font-size: 1.5em;
            font-weight: 600;
            letter-spacing: 2px;
            background: rgba(255,255,255,0.2);
            padding: 15px 25px;
            border-radius: 10px;
            display: inline-block;
            margin-top: 10px;
        }

        .warning-box {
            background: #ffe8e0;
            border-left: 5px solid var(--accent-color);
            padding: 15px 20px;
            border-radius: 8px;
            margin: 15px 0;
            font-size: 0.95em;
            color: #8b3a2a;
        }

        .warning-box strong {
            color: #8b3a2a;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .contact-item {
            background: var(--bg-light);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .contact-item:hover {
            background: var(--secondary-color);
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .contact-label {
            font-size: 0.85em;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .contact-number {
            font-size: 1.3em;
            font-weight: 700;
            color: var(--primary-color);
        }

        .qr-section {
            text-align: center;
            background: var(--bg-white);
            padding: 40px;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            margin-bottom: 30px;
        }

        .qr-section h2 {
            font-family: var(--font-header);
            font-size: 1.8em;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .qr-code {
            display: inline-block;
            padding: 20px;
            background: white;
            border: 3px solid var(--primary-color);
            border-radius: 15px;
            box-shadow: var(--shadow-md);
        }

        .qr-code img {
            width: 200px;
            height: 200px;
            display: block;
        }

        .qr-description {
            margin-top: 15px;
            font-size: 1.1em;
            color: var(--text-light);
        }

        .footer {
            background: var(--bg-white);
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-md);
            font-size: 1.2em;
            color: var(--text-light);
        }

        .footer-emoji {
            font-size: 2em;
            margin: 10px 0;
        }

        .rules-list {
            list-style: none;
        }

        .rules-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            margin-bottom: 12px;
            background: var(--bg-light);
            border-radius: 10px;
            transition: all 0.2s ease;
        }

        .rules-list li:hover {
            background: var(--secondary-color);
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }

            .header .subtitle {
                font-size: 1em;
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card {
                padding: 20px;
            }

            .wifi-name {
                font-size: 1.4em;
                word-break: break-word;
                overflow-wrap: break-word;
            }

            .wifi-password {
                font-size: 1.2em;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Selection color */
        ::selection {
            background: var(--primary-color);
            color: white;
        }
