/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
/*banner ad */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

.sci-fi-banner {
    width: 80%;
    margin: 20px auto;
    padding: 30px;
    background: #000;
    border: 2px solid #03a9f4;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.star-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.star {
    position: absolute;
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: star-blast 4s ease-out infinite;
    opacity: 0;
}

.star1 {
    top: 50%;
    left: 10%;
    animation-delay: 0s;
}

.star2 {
    top: 20%;
    left: 50%;
    animation-delay: 1.5s;
}

.star3 {
    top: 80%;
    left: 80%;
    animation-delay: 3s;
}

@keyframes star-blast {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    70% {
        opacity: 0.5;
    }
    100% {
        transform: translate(200px, -200px) scale(2);
        opacity: 0;
    }
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.banner-content h1 {
    margin: 0;
    font-size: 2rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #03a9f4;
}

.sci-fi-button {
    background-color: #03a9f4;
    color: #121212;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    margin-left: 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(3, 169, 244, 0.4);
    transition: all 0.3s ease-in-out;
}

.sci-fi-button:hover {
    background-color: #0288d1;
    box-shadow: 0 6px 20px rgba(3, 169, 244, 0.6);
}


/*  */
.main-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    gap: 20px;
}

.top-story {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top-story-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.top-story-text h1 {
    font-size: 2em;
    margin: 0;
}

.top-story-text p {
    font-size: 1.2em;
    color: #555;
}

.secondary-stories {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.secondary-story {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.secondary-story img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.sidebar-section p,
.sidebar-section button,
.sidebar-section ol,
.sidebar-section a {
    font-size: 1em;
    color: #333;
}

.sidebar-section button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.sidebar-section button:hover {
    background-color: #0056b3;
}

.weather-forecast {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.weather-forecast .day {
    text-align: center;
}

.weather-forecast .day p {
    margin: 0;
}

/* Media Queries */

/* Tablet and below */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }

    .secondary-stories {
        grid-template-columns: 1fr;    }

    .sidebar {
        order: -1;
    }

    .top-story-text h1 {
        font-size: 1.5em;
    }

    .top-story-text p {
        font-size: 1em;
       
    }
}
.banner-content #rgust{
    color:yellow;
    font-size: 1.26em;
}
.sidebar-section h3{
    color:#0056b3;
}
/* Mobile and below */
@media (max-width: 480px) {
    .top-story-text h1 {
        font-size: 1.2em;
    }

    .top-story-text p {
        font-size: 0.9em;
    }

    .sidebar-section h3 {
        font-size: 1em;
    }

    .sidebar-section p,
    .sidebar-section button,
    .sidebar-section ol,
    .sidebar-section a {
        font-size: 0.9em;
    }
}
