# CSS moderno completo estilo fútbol para tu Webnode

```css
/* ============================================
   RESET
============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #f5f5f5;
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
        url('../img/grass_texture.jpg') center center fixed;
    background-size: cover;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #f4c542;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffffff;
}

ul {
    list-style: none;
}

/* ============================================
   LAYOUT
============================================ */

#site {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(10,10,10,0.82);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

#main,
#mainWide {
    display: flex;
    gap: 20px;
    padding: 20px;
}

#sidebar,
#right {
    width: 260px;
    flex-shrink: 0;
}

#content {
    flex: 1;
    min-width: 0;
}

/* ============================================
   HEADER
============================================ */

#header {
    position: relative;
    height: 420px;
    overflow: hidden;
    background:
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.75)),
        url('../img/stadium.jpg') center center;
    background-size: cover;
    border-bottom: 5px solid #d4af37;
}

#logozone {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
}

#logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0,0,0,0.7);
}

#moto {
    margin-top: 10px;
    color: #f4c542;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   MENU
============================================ */

#menuzone {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
}

.menu li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu li:last-child {
    border-bottom: none;
}

.menu li a {
    display: block;
    padding: 16px 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: all 0.3s ease;
}

.menu li a:hover,
.menu li.selected a,
.menu li.activeSelected a {
    background: linear-gradient(90deg, #1f7a3f, #2ea85b);
    color: #ffffff;
    padding-left: 28px;
}

.menu .level1 li a {
    background: rgba(255,255,255,0.04);
    padding-left: 35px;
    font-size: 0.95rem;
}

.menu .level2 li a {
    background: rgba(255,255,255,0.02);
    padding-left: 50px;
    font-size: 0.9rem;
}

/* ============================================
   BOXES
============================================ */

.box {
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.boxTitle {
    padding: 18px 22px;
    background: linear-gradient(90deg, #0d3b1e, #1f7a3f);
    border-bottom: 3px solid #f4c542;
}

.boxTitle h1,
.boxTitle h2,
.boxTitle h3 {
    color: #ffffff;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boxContent {
    padding: 22px;
}

/* ============================================
   TYPOGRAPHY
============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.boxContent ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.boxContent ul li::before {
    content: "⚽";
    position: absolute;
    left: 0;
    top: 0;
}

/* ============================================
   ARTICLES
============================================ */

.article {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.article h3 a {
    color: #ffffff;
}

.article h3 a:hover {
    color: #f4c542;
}

.article ins,
.articleTime ins {
    color: #f4c542;
    font-style: normal;
}

.articleContent {
    margin-top: 15px;
}

/* ============================================
   SEARCH
============================================ */

#searchBox {
    margin-top: 15px;
}

#fulltextSearchText {
    width: calc(100% - 60px);
    padding: 14px;
    border: none;
    border-radius: 10px 0 0 10px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

#fulltextSubmit {
    width: 60px;
    border: none;
    background: #f4c542;
    color: #000000;
    font-weight: bold;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

#fulltextSubmit:hover {
    background: #ffffff;
}

/* ============================================
   BUTTONS
============================================ */

.submit,
.pagination .prev,
.pagination .next,
#slideshowControl {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    background: linear-gradient(90deg, #1f7a3f, #2ea85b);
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit:hover,
.pagination .prev:hover,
.pagination .next:hover,
#slideshowControl:hover {
    background: linear-gradient(90deg, #f4c542, #ffd95a);
    color: #000000;
    transform: translateY(-2px);
}

/* ============================================
   PHOTO GALLERY
============================================ */

.photo118,
.photo200 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

a.photo {
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    overflow: hidden;
    padding: 10px;
    transition: all 0.3s ease;
}

a.photo:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

a.photo .name {
    padding-top: 12px;
    color: #ffffff;
    text-align: center;
}

/* ============================================
   PRODUCTS
============================================ */

.product {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
}

.product .image {
    width: 180px;
    flex-shrink: 0;
}

.product .image img {
    border-radius: 12px;
}

.product .title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* ============================================
   COMMENTS / DISCUSSION
============================================ */

.diskuze {
    padding: 25px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
}

.diskuze input,
.diskuze textarea,
.diskuze select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.diskuze label {
    display: block;
    margin-bottom: 6px;
    color: #f4c542;
    font-weight: bold;
}

.post {
    margin-top: 20px;
    padding: 18px;
    border-left: 4px solid #f4c542;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
}

/* ============================================
   PAGINATION
============================================ */

.paging {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.paging a,
.paging .selected {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.paging .selected {
    background: #f4c542;
    color: #000000;
    font-weight: bold;
}

/* ============================================
   FOOTER FUTBOLERO
============================================ */

#footer {
    position: relative;
    padding: 40px 30px;
    background:
        linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
        url('../img/grass_texture.jpg') center center;
    border-top: 5px solid #f4c542;
    overflow: hidden;
}

#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #ffffff,
        #ffffff 20px,
        transparent 20px,
        transparent 40px
    );
    opacity: 0.2;
}

#footerContent {
    position: relative;
    z-index: 2;
}

#footerLeft,
#footerRight {
    color: rgba(255,255,255,0.8);
}

/* ============================================
   SPONSOR CAROUSEL
============================================ */

.sponsor-zone {
    margin-top: 30px;
}

.sponsor-title {
    text-align: center;
    margin-bottom: 20px;
    color: #f4c542;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sponsor-carousel {
    overflow: hidden;
    position: relative;
}

.sponsor-track {
    display: flex;
    width: max-content;
    animation: sponsorScroll 30s linear infinite;
}

.sponsor-carousel:hover .sponsor-track {
    animation-play-state: paused;
}

.sponsor-item {
    width: 180px;
    height: 90px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.14);
}

.sponsor-item img {
    max-width: 120px;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.sponsor-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes sponsorScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   CONTACT BOX
============================================ */

#contact {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #14532d, #0b3a1c);
    text-align: center;
}

#contactTitle h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

#contact .email a {
    color: #f4c542;
}

/* ============================================
   TABLES
============================================ */

.modernTable {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

.modernTable thead {
    background: #1f7a3f;
}

.modernTable th,
.modernTable td {
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.modernTable tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1024px) {

    #main,
    #mainWide {
        flex-direction: column;
    }

    #sidebar,
    #right {
        width: 100%;
    }

    .product {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    #header {
        height: 300px;
    }

    #logo {
        font-size: 2rem;
    }

    #main,
    #mainWide {
        padding: 10px;
    }

    .boxContent {
        padding: 15px;
    }

    .sponsor-item {
        width: 140px;
    }
}
```

---