/*
Theme Name: News Theme Custom
Description: Static layout from index2.html
Version: 1.0
*/
.news-img {
    width: 100%;
    height: 250px; /* adjust as needed */
    object-fit: cover;
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.min-h-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Crypto Ticker */
.crypto-ticker {
    background-color: #003366;
    color: white;
    overflow-x: auto;
}

.ticker-container {
    display: flex;
    justify-content: center;
    white-space: nowrap;
}

.ticker-item {
    font-size: 15px;
    display: flex;
    align-items: center;
    padding: 0.25rem 1rem;
}

.ticker-item>* {
    margin-right: 0.5rem;
}

.crypto-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.bitcoin {
    background-color: #f7931a;
}

.ethereum {
    background-color: #627eea;
}

.crypto-name {
    font-weight: 600;
}

.crypto-symbol {
    color: #d1d5db;
}

.price-change.up {
    color: #34d399;
}

.price-change.down {
    color: #f87171;
}

/* Navbar */
.main-nav {
    background-color: #0d1b3f;
    padding: 30px 30px;
}

.nav-container {
    display: flex;
    flex-direction: column;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    color: white;
}

.nav-divider {
    border: 1px solid #e5e7eb;
    margin: 0.5rem 0;
}

.navbar-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 1rem;
    padding: 10px;
    margin: 0;
}

.navbar-menu li a {
    color: white;
    text-decoration: none;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
    color: white;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-right .icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    color: white;
}

.search-form input {
    background-color: transparent !important;
    border: none;
}
.search-form input:focus {
    outline: none !important;
}
.search-form {
   display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobili {
        display: flex;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .navbar-menu.show {
        display: flex;
    }

    .navbar-menu li {
        padding: 10px;
        width: 100%;
        /* border-top: 1px solid #e5e7eb; */
    }

    .navbar-menu li a {
        width: 100%;
    }

    .nav-right {
        padding-left: 25px;
        /* flex-direction: column; */
        /* align-items: flex-start;
        margin-top: 1rem; */
    }
}


/* Advertisement Banner */
.ad-banner {
    margin: 1.5rem 0;
}

.banner {

    color: white;
    padding: 1rem;
    border-radius: 0.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner p:first-child {
    font-weight: bold;
}

.buy-now {
    background-color: #4caf50;
    color: white;
    padding: 0.25rem 1rem;
    border: none;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    cursor: pointer;
}

.buy-now:hover {
    background-color: #3e8e41;
}

/* Section Titles */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #313131;
}

.view-all {
    display: flex;
    align-items: center;
    color: #4b5563;
}

.view-all:hover {
    color: #e63946;
}

.view-all span {
    font-size: 1.5rem;
    line-height: 1;
}

/* Sport Grid */
.sport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 150px;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sport-feature {
    grid-column: 1;
    grid-row: 1 / span 3;
}

.sport-image {
    position: relative;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
}

.sport-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sport-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 1rem;
    color: white;
}

.sport-overlay h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.sport-news-right {
    grid-column: 2;
}

.sport-news-item {
    display: flex;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.sport-news-image {
    flex: 0 0 40%;
}

.sport-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sport-news-content h3 {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.sport-sidebar {
    grid-column: 3;
}

/* Sidebar Styling */
.sidebar-ad {

    border-radius: 0.25rem;
    overflow: hidden;
    /* padding: 15px; */
}

.ad-header {
    background-color: #003366;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: bold;
}

.ad-content {
    padding: 1rem;
    text-align: center;
}

.ad-content p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.ad-content img {
    width: 100%;
    height: auto;
    margin: 0.5rem 0;
}

.ad-button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: 500;
}

.ad-button:hover {
    background-color: #00264d;
}

/* Top Lajme Grid */
.top-lajme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.top-lajme-item {
    border-radius: 0.25rem;
    overflow: hidden;
}

.top-lajme-image {
    height: 0;
    padding-bottom: 60%;
    position: relative;
    overflow: hidden;
}

.top-lajme-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-lajme-item h3 {
    padding-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.ad-item {
    display: flex;
    flex-direction: column;
}

.ad-company {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ad-company p {
    font-weight: bold;
    color: #003366;
}

.sidebar-compact {
    background-color: #f9fafb;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ad-button-sm {
    background-color: #003366;
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 1rem;
}

/* Promos Grid */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.promo-item {
    display: flex;
    flex-direction: column;
}

.promo-image {
    position: relative;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}

.promo-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-item h3 {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

/* TV Filma Section */
.tv-filma-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.tv-filma-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tv-feature {
    display: flex;
    flex-direction: column;
}

.tv-image {
    position: relative;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}

.tv-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tv-feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tv-feature p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Crypto Small List */
.crypto-small-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.25rem;
}

.crypto-small-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.crypto-small-item:last-child {
    border-bottom: none;
}

.crypto-small-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.crypto-small-details {
    flex: 1;
}

.crypto-small-name {
    font-weight: 500;
}

.crypto-small-price {
    font-size: 0.85rem;
    color: #6b7280;
}

.crypto-small-change {
    font-size: 0.85rem;
}

.crypto-small-change.up {
    color: #34d399;
}

.crypto-small-change.down {
    color: #f87171;
}

.sidebar-box {
    margin-bottom: 1.5rem;
}

.sidebar-title {
    background-color: #006EDE;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* TV Small Grid */
.tv-filma-small-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.tv-small-item {
    display: flex;
    flex-direction: column;
}

.tv-small-image {
    position: relative;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.tv-small-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tv-small-item h4 {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Ekonomi Grid */
.ekonomi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ekonomi-item {
    display: flex;
    flex-direction: column;
}

.ekonomi-image {
    position: relative;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}

.ekonomi-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ekonomi-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.ekonomi-item p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Te Fundit Grid */
.te-fundit-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.te-fundit-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.te-fundit-feature {
    display: flex;
    gap: 1.5rem;
}

.te-fundit-image {
    flex: 0 0 33%;
    position: relative;
}

.te-fundit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.te-fundit-content {
    flex: 1;
}

.te-fundit-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.te-fundit-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.te-fundit-content p {
    font-size: 0.85rem;
    color: #4b5563;
}

.sidebar-image {
    position: relative;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 0.25rem;
}

.sidebar-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 1rem;
    color: white;
}

.sidebar-overlay h3 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Telegrafet Grid */
.telegrafet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 300px;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.telegrafet-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.telegrafet-image {
    position: relative;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.telegrafet-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.telegrafet-item h3 {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.telegrafet-right {
    grid-column: 4;
    grid-row: 1 / span 3;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Video Section */
.video-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-section h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 0.5rem;
}

.video-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video-thumbnail {
    position: relative;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 0.25rem;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.video-item h4 {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Populare Section */
.populare-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.populare-section h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 0.5rem;
}

.populare-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.populare-item:last-child {
    border-bottom: none;
}

.populare-number {
    background-color: #003366;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.populare-item p {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Footer */
footer {
    background-color: #222222;
    color: white;
    padding: 3rem 1rem 2rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footerbutton{
 color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
}

.footer-description {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-email {
    color: #60a5fa;
    text-decoration: none;
}

.footer-email:hover {
    color: #93c5fd;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
    }
}

.footer-logo {
    margin-right: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 0;
    }
}

.footer-logo h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.25rem;
}

.footer-logo span {
    color: #f97316;
}

.newsletter {
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .newsletter {
        width: auto;
        max-width: 28rem;
        margin-bottom: 0;
    }
}

.newsletter p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    height: 2.5rem;
    padding: 0 0.75rem;
    border: 1px solid #4b5563;
    border-radius: 0.375rem;
    background-color: transparent;
    color: white;
    font-size: 0.875rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.newsletter-button {
    background-color: #385CC2;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;

}

.newsletter-button:hover {
    background-color: #2563eb;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #374151;
    font-size: 0.75rem;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .copyright {
        text-align: right;
    }

    footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.app-link {
    padding: 0.25rem 0.75rem;
    border: 1px solid #fff;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.app-link:hover {
    background-color: white;
    color: #003366;
}

/* Additional Crypto Icons */
.crypto-icon.bnb {
    background-color: #f3ba2f;
}

.crypto-icon.tether {
    background-color: #26a17b;
}

.crypto-icon.xrp {
    background-color: #23292f;
}

.crypto-icon.solana {
    background-color: #9945ff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .sport-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sport-sidebar {
        grid-column: 1 / span 2;
        grid-row: 3;
    }

    .top-lajme-grid,
    .promos-grid,
    .tv-filma-small-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .telegrafet-grid {
        grid-template-columns: 1fr;
    }

    .telegrafet-right {
        grid-column: 1 / span 2;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nomobile {
        display: none;
    }

    .navbar-menu {
        display: none;
    }

    .telegrafet-grid {
        display: block !important;
    }

    .tv-filma-grid {
        grid-template-columns: 1fr;
    }

    .tv-filma-left {
        grid-template-columns: 1fr;
    }

    .te-fundit-grid {
        grid-template-columns: 1fr;
    }

    .ekonomi-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {

    .top-lajme-grid,
    .promos-grid {
        grid-template-columns: 1fr;
    }

    .te-fundit-feature {
        flex-direction: column;
    }

    .te-fundit-image {
        flex: 0 0 auto;
        height: 200px;
    }

    .sport-grid {
        grid-template-columns: 1fr;
    }

    .sport-news-right {
        grid-column: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .telegrafet-grid {
        grid-template-columns: 1fr;
    }


}
