/* Reset and base styles */
:root {
    --black-color: #000000;
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --accent-color: #3681cc;
    --over-color: #008fde;
    --text-color: #333333;
    --background-color: #f5f5f5;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Navigation */
nav {
    background-color: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 60px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/weather-back.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 6rem 1.5rem;
    margin-top: 74px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Features Section */
.features {
    padding: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Apps Page */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 1.5rem;
}


.app-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.app-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 1rem;
}

/* Games Page */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 1.5rem;
}

.game-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.game-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 1rem;
}

/* Support Page */
.support-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* About Page */
.about-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 1.5rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.cta-button,
.store-button,
.play-button,
.submit-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.cta-button:hover,
.store-button:hover,
.play-button:hover,
.submit-button:hover {
    background-color: var(--over-color);
}

/* Page Headers */
.page-header,
.page-header-game,
.page-header-apps {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem 3rem;
    margin-top: 74px;
    position: relative;
}

.page-header h1,
.page-header-game h1,
.page-header-apps h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header-game {
    background-image: url('img/pandamino-gp-2.webp');
    background-size: cover;
    background-position: center;
}

.page-header-apps {
    background-image: url('img/weather-map.webp');
    background-size: cover;
    background-position: top;
}

.page-header-game::before,
.page-header-apps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header-game h1, .page-header-game p,
.page-header-apps h1, .page-header-apps p {
    position: relative;
    z-index: 2;
}

.std-section p {
  margin-bottom: 0.5rem; 
}

.std-content {
    padding: 2rem;
}


.long-list  {
    padding: 1rem;
}


.std-paragraph p {
  margin-top: 0.5rem; 
}
.app-stores {
     padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-card, .app-card, .game-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}


.alert-list {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.alert-list th, .alert-list td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
}

.alert-list th {
  background-color: #f7f7f7;
  font-weight: bold;
  color: #333;
}

.alert-list td {
  background-color: #fff;
}

.alert-list a {
  text-decoration: none;
  color: #337ab7;
  transition: color 0.2s ease;
}

.alert-list a:hover {
  color: #23527c;
}

.alert-list tr:nth-child(even) {
  background-color: #f9f9f9;
}

.alert-list tr:hover {
  background-color: #f2f2f2;
}