* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        header {
            text-align: center;
            padding: 2rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            width: 100%;
        }

        header h1 {
            font-size: 2.5rem;
            color: #ffffff;
        }

        header p {
            font-size: 1rem;
            color: #aaaaaa;
        }

        .carousel-container {
            position: relative;
            width: 90%;
            max-width: 1000px;
            margin: 2rem 0;
            overflow: hidden;
            border-radius: 15px;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-card {
            min-width: 100%;
            flex: 0 0 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            
            backdrop-filter: blur(20px);
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        .apod-card{
            background: url('apod.jpg') no-repeat center center/cover;
        }

        .mrps-card{
            background: url('mars.jpg') no-repeat center center/cover;
        }

        .iss-card{
            background: url('ISS.jpg') no-repeat center center/cover;
        }

        .ss-card{
            background: url('s-s.jpg') no-repeat center center/cover;
        }

                .earth-card{
            background: url('earth.jpg') no-repeat center center/cover;
        }

                .e-card{
            background: url('earth-img.jpg') no-repeat center center/cover;
        }

        .neo-card{
            background: url('neo.jpg') no-repeat center center/cover;
        }
        .se-card{
            background: url('p-w.jpg') no-repeat center center/cover;
        }

                .sw-card{
            background: url('s-w.jpg') no-repeat center center/cover;
        }
        .carousel-card img {
            width: 80%;
            max-width: 300px;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .carousel-card h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
            font-weight:bold;
        }

        .carousel-card p {
            font-size: 1rem;
            color: #cccccc;
            margin-bottom: 1rem;
        }

        .carousel-card a {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: #007BFF;
            color: #ffffff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .carousel-card a:hover {
            background: #0056b3;
        }

        .carousel-buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .carousel-button {
            width: 100px;
            height: 100px;
            background: transparent;
            
            border: none;
            color: #ffffff;
            font-size: 2rem;
            padding: 0.5rem 1rem;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .carousel-button:hover {
            opacity: 0.5;
        }

        footer {
            margin-top: auto;
            width: 100%;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            color: #aaaaaa;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 600px) {
            header h1 {
                font-size: 2rem;
            }

            .carousel-card h2 {
                font-size: 1.2rem;
            }

            .carousel-card p {
                font-size: 0.9rem;
            }
        }
