.vote {
    padding: 80px 20px;
}
.logo {
    height: 150px;
}
.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    color: #e5f0ff;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #aac8ff;
    font-size: 18px;
}

.vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.vote-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 120, 255, 0.15);
}

.vote-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(0, 120, 255, 0.45);
    border-color: rgba(0, 120, 255, 0.6);
}

.vote-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.vote-card p {
    opacity: 0.8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Poppins", sans-serif;
  background: #030617;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

/* PARTICLE BACKGROUND */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at top, #18224a, #080b1d 60%, #02030b);
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(3, 6, 23, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  z-index: 10;
}
header img { height: 55px; }
nav a {
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  color: #c9d8ff;
  transition: 0.3s;
}
nav a:hover { color: #7ab8ff; text-shadow: 0 0 10px #5caeff; }

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  text-shadow: 0 0 20px #3fa8ff;
  animation: fadeIn 1.4s ease forwards;
}
.hero p {
  font-size: 1.4rem;
  margin-top: 15px;
  color: #d6e4ff;
  animation: fadeIn 2s ease forwards;
}
.btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #1e90ff, #60a5fa);
  border-radius: 20px;
  color: #fff;  
  font-weight: 500;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(80, 160, 255, 0.6);
  transition: 0.3s;
}
.btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(100, 180, 255, 0.9);
}

/* SECTIONS */
section { padding: 110px 25px; text-align: center; }
h2 { font-size: 2.5rem; margin-bottom: 20px; text-shadow: 0 0 10px #3fa8ff; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  margin-top: 50px;
}
.card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
  transition: 0.4s;
}
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 40px rgba(90, 150, 255, 0.5);
}



/* FOOTER */
footer {
  padding: 30px;
  background: rgba(3, 6, 23, 0.7);
  text-align: center;
  font-size: 0.9rem;
  color: #9bb4ff;
  margin-top: 50px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
.discord-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    padding: 35px;
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap; /* ← OPRAVA – text se NEPŘEKRYJE */
    box-shadow: 0 0 25px rgba(0, 120, 255, 0.28);
}

.discord-text h3 {
    font-size: 32px;
    margin: 0;
    color: #e8f0ff;
}

.discord-text p {
    margin: 5px 0 0;
    color: #b9d4ff;
    font-size: 17px;
}

.discord-btn {
    padding: 14px 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, #005eff, #009dff);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
    box-shadow: 0 0 18px rgba(0, 120, 255, 0.55);
}

.discord-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(0, 140, 255, 0.8);
}
#ip-section {
    padding: 80px 20px;
}

.ip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.ip-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 22px;
    backdrop-filter: blur(14px);
    box-shadow: 0 0 25px rgba(0, 120, 255, 0.25);
}

.ip-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #e5f0ff;
}

.ip-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
}

.ip-label {
    color: #aac8ff;
    font-weight: 600;
}

.ip-value {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
}

.copy-btn {
    background: #007bff;
    border: none;
    padding: 7px 15px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.copy-btn:hover {
    background: #009dff;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
}


/* Nadpis sekce */
.rules-section h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Kontejner pravidel */
.rule-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Jednotlivé pravidlo */
.rule {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s ease;
    border-left: 4px solid #4dabff;
}

/* Hover efekt */
.rule:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.2);
    border-left-color: #6bc3ff;
}

/* Nadpis pravidla */
.rule h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
}

/* Popis pravidla */
.rule p {
    margin: 0;
    font-size: 16px;
    color: #e0e0e0;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* TABLET – vše nad 768px */
@media (max-width: 1024px) {

    header {
        padding: 15px 30px;
    }

    nav a {
        margin-left: 15px;
        font-size: 0.95rem;
    }

    .hero h1 {
        font-size: 3.3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .card-grid {
        gap: 25px;
    }
}
/* VIP kontejner */
.vip-box {
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border: 2px solid rgba(255, 215, 0, 0.7);
    border-radius: 18px;
    padding: 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
    position: relative;
    overflow: hidden;
}

/* Zlaté označení */
.vip-box::before {
    content: "VIP";
    position: absolute;
    top: 12px;
    right: -25px;
    background: gold;
    color: #000;
    padding: 6px 40px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* VIP tlačítko */
.vip-btn {
    background: linear-gradient(135deg, #ffd700, #ffb400);
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 16px;
}

.vip-btn:hover {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

/* MOBIL – telefony 480–768px */
@media (max-width: 768px) {

    /* LOGO + MENU */
    header {
        padding: 12px 20px;
    }

    header img {
        height: 45px;
    }

    nav {
        display: none; /* připraveno pro HAM MENU */
    }

    /* HERO */
    .hero h1 {
        font-size: 2.3rem;
        line-height: 2.7rem;
    }

    .hero p {
        font-size: 1.05rem;
        margin-top: 10px;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 18px;
        border-radius: 16px;
    }

    /* SECTIONS */
    section {
        padding: 80px 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    /* CARDS */
    .card {
        padding: 25px;
    }

    /* VOTE CARDS – větší mezery na mobilech */
    .vote-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vote-card {
        padding: 25px;
    }

    /* DISCORD BOX */
    .discord-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .discord-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 17px;
    }

    /* IP SEKCE – vertikální layout */
    .ip-grid {
        grid-template-columns: 1fr;
    }

    .ip-card {
        padding: 25px;
    }

    .ip-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .copy-btn {
        width: 100%;
        margin-top: 8px;
        padding: 10px;
    }
}

/* EXTRA SMALL – malé telefony 320–480px */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.9rem;
        line-height: 2.3rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .card {
        padding: 20px;
        border-radius: 18px;
    }

    .vote-card h3 {
        font-size: 22px;
    }

    .ip-card h3 {
        font-size: 24px;
    }

    }
   
