<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>RS Universe - Meet Our Team</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            min-height: 100vh;
            color: white;
        }

        /* Stars animation */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite ease-in-out;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .container {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px;
        }

        .logo {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
        }

        /* Team Section */
        .section-title {
            text-align: center;
            font-size: 2rem;
            margin: 60px 0 40px;
            color: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .team-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 3rem;
        }

        .team-name {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: white;
        }

        .team-role {
            color: #a78bfa;
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .team-bio {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Features/About Section */
        .about-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px 40px;
            margin: 60px 0;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .about-section h2 {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: white;
        }

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

        .feature {
            text-align: center;
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .feature h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: white;
        }

        .feature p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 60px 20px;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px 20px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        footer a {
            color: #a78bfa;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.5rem;
            }
        }
    </style>
</head>
<body>
    <!-- Animated stars background -->
    <div class="stars" id="stars"></div>

    <div class="container">
        <!-- Hero Section -->
        <section class="hero">
            <div class="logo">&#x1F30C;</div>
            <h1>RS Universe</h1>
            <p class="hero-subtitle">Meet the team who makes RS Universe!</p>
            <a href="/appointments/" class="cta-button">Book a Meeting</a>
        </section>

        <!-- Team Section -->
        <h2 class="section-title">Our Team</h2>
        <div class="team-grid">
            <div class="team-card">
                <div class="team-avatar">&#x1F469;&#x200D;&#x1F4BB;</div>
                <h3 class="team-name">Rosy</h3>
                <p class="team-role">Founder & Lead Developer</p>
                <p class="team-bio">Building the future of RS Universe with passion and creativity.</p>
            </div>

            <div class="team-card">
                <div class="team-avatar">&#x1F468;&#x200D;&#x1F680;</div>
                <h3 class="team-name">Team Member</h3>
                <p class="team-role">Developer</p>
                <p class="team-bio">Crafting amazing experiences across the universe.</p>
            </div>

            <div class="team-card">
                <div class="team-avatar">&#x1F9D1;&#x200D;&#x1F3A8;</div>
                <h3 class="team-name">Team Member</h3>
                <p class="team-role">Designer</p>
                <p class="team-bio">Making RS Universe beautiful, one pixel at a time.</p>
            </div>
        </div>

        <!-- About Section -->
        <section class="about-section">
            <h2>What We Do</h2>
            <div class="features-grid">
                <div class="feature">
                    <div class="feature-icon">&#x1F680;</div>
                    <h3>Innovation</h3>
                    <p>Pushing boundaries and exploring new possibilities</p>
                </div>
                <div class="feature">
                    <div class="feature-icon">&#x1F91D;</div>
                    <h3>Collaboration</h3>
                    <p>Working together to achieve great things</p>
                </div>
                <div class="feature">
                    <div class="feature-icon">&#x2728;</div>
                    <h3>Creativity</h3>
                    <p>Bringing ideas to life with imagination</p>
                </div>
                <div class="feature">
                    <div class="feature-icon">&#x1F4A1;</div>
                    <h3>Vision</h3>
                    <p>Building something meaningful for everyone</p>
                </div>
            </div>
        </section>

        <!-- CTA Section -->
        <section class="cta-section">
            <h2>Want to Connect?</h2>
            <p>Schedule a meeting with our team - we'd love to hear from you!</p>
            <a href="/appointments/" class="cta-button">Book an Appointment</a>
        </section>
    </div>

    <footer>
        <p>&copy; 2024 RS Universe | <a href="/">Home</a></p>
    </footer>

    <script>
        // Create animated stars
        const starsContainer = document.getElementById('stars');
        const numStars = 100;

        for (let i = 0; i < numStars; i++) {
            const star = document.createElement('div');
            star.className = 'star';

            const size = Math.random() * 3 + 1;
            star.style.width = size + 'px';
            star.style.height = size + 'px';

            star.style.left = Math.random() * 100 + '%';
            star.style.top = Math.random() * 100 + '%';

            star.style.animationDelay = Math.random() * 3 + 's';
            star.style.animationDuration = (Math.random() * 2 + 2) + 's';

            starsContainer.appendChild(star);
        }
    </script>
</body>
</html>
