

@font-face {
    font-family: 'GT America';
    src: url('../fonts/GtAmerica-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Acherus Grotesque';
    src: url('../fonts/AcherusGrotesque.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Mechanismo';
    src: url('../fonts/Mechanismo.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
  /* Brand colors */
  --navy: #0b1220;
  --navy-soft: #111827;
  --gray: #666;
  --background: #edecf1;

  --orange-bright: #ff7a06;
  --orange-soft: #ffb36b;
  --orange-dark: #e36d05; /* hover state */

  /* Neutrals */
  --bg-main: #050816;
  --bg-elevated: #111827;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --page-bg: #f7f5fb;
  --card-bg: #ffffff;
  --text-main-dark: #111827;
  --text-body: #4b5563;

  /* Gamification accents */
  --xp-green: #34d399;
  --rank-purple: #a855f7;
}


/* Homepage */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'GT America', Arial, sans-serif;
    background-color: var( --background);
    color: var(--border-subtle);
    line-height: 1.6;
}
.container {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header */
.site-header {
      position: sticky;               /* makes it stay at top */
    top: 0;
    z-index: 100;                   /* keep it above other sections */

    background-color: var(--navy);  /* was #082b87 */
    color: #fff;
    padding: 1rem 0;

    /* soft depth under the bar */
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Center everything inside the header */
.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header layout bar */
.site-header-bar {
      display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 4rem;        /* space between logo, nav, xp */
  height: 72px;
}

/* Avatar pinned to the far right */
.header-right {
     margin-left: 2rem;                /* extra breathing room from nav */

}

/* Circle avatar placeholder */
.avatar-button {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at 20% 20%, #1f2937, #020617);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.avatar-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
    border-color: var(--orange-soft);
}

.avatar-button:focus-visible {
    outline: 2px solid var(--rank-purple);
    outline-offset: 3px;
}

.avatar-initials {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rank-purple);
}


/* PIXEL PRESS LOGO */
.logo {
    font-family: 'Mechanismo', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1;
    color: var(--text-main);

    display: inline-flex;        /* keeps P, img, XEL on one line */
    align-items: center;
    gap: 0;                      /* 🔑 NO extra space between items */
    white-space: nowrap;
    letter-spacing: 0.15em;      /* same wide tracking you had before */
}

/* Pixel “I” image */
.logo-i {
  height: 1.15em;      /* slightly taller than the text */
  width: auto;
  display: inline-block;
  vertical-align: baseline;

  margin: 0 -0.10em 0 -0.03em;  
  transform: translateY(0.02em);
}

 /* Navigation list (center area) */
.main-nav ul {
      display: flex;
  align-items: center;
  gap: 3.5rem;                      /* spacing between nav items */
  list-style: none;
  margin: 0;
  padding: 0;
}
  
/* Add breathing room between logo and nav */
.main-nav {
    margin-top: 25px;   /* Try 20–40px for best spacing */
  }

.main-nav a {
     flex: 1;                          /* takes middle space */
  display: flex;
  justify-content: center;          /* center nav between logo + XP */
}

.site-header nav ul {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    list-style: none;
}
.site-header nav a {
    color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  position: relative;

}

/* Optional: add a little hover polish to nav links */
.site-header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-bright), var(--orange-soft));
  transition: width 0.2s ease;
}

.site-header nav a:hover::after,
.site-header nav a.active::after {
  width: 100%;
}

/* Icon + text links */
.nav-link-icon {
    display: inline-flex;
    align-items: center;   /* keeps icon and text aligned */
    gap: 0.45rem;          /* controls icon spacing — adjust as needed */
}

.nav-link-icon .icon {
    font-size: 1.1rem;     /* keeps icons consistent */
    line-height: 0;        /* removes extra vertical space */
    display: flex;
    align-items: center;   /* centers the emoji properly */
}


/* Featured slider (top of homepage) */
.featured-slider {
    background: var(--navy-soft);
    padding: 0.75rem 0 1.25rem;
     margin-bottom: 0.5rem;

}

.featured-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem;
    scroll-snap-type: x mandatory;
}

.featured-card {
    min-width: 260px;
    max-width: 320px;
    background: var(--bg-elevated);
    color: var(--text-main);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    scroll-snap-align: start;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.38);
    border: 1px solid var(--border-subtle);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.55);
}

.featured-card .badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--navy);
    background: var(--orange-soft);
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.4rem;
}

.featured-card h3 {
    font-family: 'Acherus Grotesque', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.featured-card p {
    font-family: 'GT America', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hover Effect for Navigation */
.site-header nav a:hover {
    color: var(--orange-bright); /* Orange color on hover */
}

.player-status {
    background: #0b1220;
    border-bottom: 1px solid var(--border-subtle);
        margin-top: 0;

}

.player-status-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-family: 'GT America', sans-serif;
    font-size: 0.85rem;
    color: var(--light-lavender);
}

.player-label {
    font-weight: 600;
    white-space: nowrap;
    color: #edecf1;
}

.xp-bar {
    flex: 1;
    height: 6px;
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.xp-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
      90deg,
      var(--orange-bright),
      var(--xp-green),
      var(--rank-purple)
    );
}

.player-xp {
    white-space: nowrap;
    font-size: 0.78rem;
    color: #edecf1;
}

/* Hero */
.hero {
    padding: 2rem 0;
    margin-top: 1rem;
  }


  .hero-inner {
    /* use a fresh class so global `.container` styles don't interfere */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
  
    display: grid;                 /* force two columns */
    grid-template-columns: 1.2fr 1fr; /* text left, image right */
    align-items: stretch;          /* both columns same height */
    gap: 2rem;
  }

  .hero-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;       /* vertically centers text vs image */
  }
  
  .hero-text p {
    color: var(--bg-main);
    font-family: 'GT America', sans-serif;
    font-size: 1.400rem;
    margin: 0 0 1.5rem;
    max-width: 48ch;
    line-height: 2.1;

  }


  .hero-text h2 {
    color: var(--navy);
    font-family: 'Acherus Grotesque', sans-serif;
    font-size: 3rem;
    line-height: 2.1;
    margin: 0 0 .75rem;
  }


 .primary-btn {
    background: var(--orange-bright);
    color: var(--bg-main);
    padding: 0.7rem 1.6rem;
    border: none;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
  }
  .primary-btn:hover 
  {  background-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35); }

  .primary-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.8);
}

  /* Right column image matches text column height */
.hero-media {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;              /* rounds image corners cleanly */
  }
  .hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;             /* crops nicely */
    object-position: 60% 50%;      /* slight off-center focal point */
  }

 
/* Sections */
.latest-news, .editor-pick, .weekly-highlights, .gamer-quotes, .join-squad {
    margin-top: 4rem;
}

.news-grid, .weekly-grid, .quotes-grid {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.latest-news h2 {
    font-family: 'Acherus Grotesque', sans-serif;
    color: var(--navy);

}

.latest-news p {
color: var(--bg-main);
}

.trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0 1rem;
}

.trending-tags .tag {
    font-family: 'GT America', sans-serif;
    font-size: 0.8rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(8, 43, 135, 0.08);
    color: #082b87;
    border: 1px solid rgba(8, 43, 135, 0.14);
    cursor: default;
}

.trending-tags .tag:hover {
    background: rgba(148,163,184,0.25);
    transform: translateY(-2px);
    transition: 0.15s ease;
}


.community-cta {
    text-align: center;
    margin-top: 2rem;
  }
  
  .community-cta h2 {
    color: var(--navy);
    font-family: 'Acherus Grotesque', sans-serif;
    margin-bottom: 1rem; /* tighter space between title and paragraph */

  }
  
  .community-cta p {
    font-family: 'GT America', sans-serif;
    color: var(--bg-main);
    font-size: 1.500rem;
    margin: 0 0 1.5rem; /* removes excessive padding */
    padding: 0; /* clean reset */
  }
  
  .community-cta .primary-btn {
    display: inline-block;
    background: var(--orange-bright);
    color: var(--bg-main);
    padding: 0.85rem 1.6rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none; /* ✅ removes underline */
    transition: background 0.3s ease;
  }
  
  .community-cta .primary-btn:hover {
    background: var(--orange-dark);
  }

.editor-pick h2 {
    font-family: 'Acherus Grotesque', sans-serif;
    color: var(--navy);
}

.editor-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.editor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.28);
}

.review-section {
    color: var(--bg-main);
    margin-top: -5%;
}

.weekly-highlights h2 {
    font-family: 'Acherus Grotesque', sans-serif;
    color: var(--navy);
}

.gamer-quotes h2 {
    font-family: 'Acherus Grotesque', sans-serif;
    color: var(--navy);
}

.join-squad {
    font-family: 'Acherus Grotesque', sans-serif;
    color: var(--navy);
}

.news-grid article {
    background: var(--text-main);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    text-align: left;
}

.weekly-grid article {
    background: var(--text-main);
    padding: 65px;
    border-radius: 8px;
    flex: 1;
    text-align: left;
}

.weekly-grid p {
    color:var(--bg-main)
}

.news-grid img {
    width: 100%;
    height: 55%; /* Set a fixed height */
    object-fit: cover; /* Crop the image without distortion */
    border-radius: 8px;
}

.news-grid h3 a {
    text-decoration: none;
    color: var(--bg-main);
}

.news-grid h3 a:hover {
    text-decoration: underline;
    color: var(--navy); /* Optional: hover color matches your theme */
}

.weekly-grid img {
    width: 100%;
    height: 75%; /* Set a fixed height */
    object-fit: cover; /* Crop the image without distortion */
    border-radius: 8px;
}

.weekly-grid h3 a {
    text-decoration: none;
    color: var(--bg-main);
}

.weekly-grid h3 a:hover {
    text-decoration: underline;
    color: var(--navy); /* Optional: hover color matches your theme */
}

/* Editor Pick */

@media (max-width: 768px) {
    .pick-grid {
        flex-direction: column;
    }
    .pick-image img {
        width: 100%;
    }
}

.review-section h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'GT America', sans-serif;
    font-weight: lighter;
    font-size: 23px;
}

.pick-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 1rem;
}
.pick-text {
    flex: 1;
    font-family: 'GT America', sans-serif; /* or any preferred font */

}

.pick-text h3 {
    font-family: 'GT America', sans-serif;
    font-weight: bolder;
    font-size: 25px;
}

.pick-image img {
    width: 550px; /* Adjust as needed */
    height: auto;
    border-radius: 8px;
}

.buttons {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}



/* Quotes */
.quotes-grid {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}
.quote-card {
    background: var(--text-main);
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
    text-align: center;
}
.quote-card blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--bg-main);
}
.quote-name {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Join the Squad */
.join-squad {
    text-align: center;
    margin-top: 4rem;
}
.signup-buttons {
    margin-top: 1rem;
}
.large-btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    margin: 0.5rem;
}

/* Primary and Secondary Buttons */
.primary-btn {
    background-color: var(--orange-bright);
    color: var(--bg-main);
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 23px;
}
.primary-btn:hover {
    background-color: var(--orange-dark);
}

.secondary-btn {
    background-color: var(--navy);
    color: var(--text-main);
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: 5px;
    margin-right: 0.5rem;
    cursor: pointer;
    font-size: 23px;
    font-weight: bolder;


}
.secondary-btn:hover {
    background-color: var(--navy-soft);
    color: var(--text-main);
}

/* Footer */
.site-footer {
    background-color: var(--navy);
    color: var(--text-main);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    font-size: 0.9rem;
}
.footer-links {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    margin: 0 0.5rem;
}
.footer-links a:hover {
    text-decoration: underline;
}



PixelPress/
├── index.html
├── css/
│   └── style.css
└── Images/
    ├── glenn-carstens-peters-0woyPEJQ7jc-unsplash.jpg
    ├── sonic-rumble-release-date-eggman.jpg
    ├── capsule_616x353.jpg
    ├── twinkleby-gameplay-reading.jpg
    ├── astro-bot-casino.jpg
    ├── nintendo-switch-2-promo-image-1.jpg
    ├── marvel-rivals-season-2-patch-notes.jpg


/* Homepage */

/* Article Styles */

/* Reading progress bar */

body {
  background-color: var(--page-bg);
  color: var(--text-body);
}

/* Article layout */
.article-main {
  background: var(--page-bg);
  padding: 3rem 0 4rem;
}

.article-content {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  color: var(--text-body);
}

.article-content h1,
.article-content h2,
.article-content h3 {
  color: var(--text-main-dark);
}

.reading-progress {
    position: fixed;
    top: 0;                 /* shows at very top of the page */
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(15, 23, 42, 0.4);
    z-index: 999;
}

.reading-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(
      90deg,
      var(--orange-bright),
      var(--xp-green),
      var(--rank-purple)
    );
    transition: width 0.08s linear;
}



h2 {
    font-size: 2.5rem;
    font-family: 'Acherus Grotesque', sans-serif;
     text-align: center;

}

 h2 a {
    text-decoration: none;
    color: var(--navy-soft);
}

 h2 a:hover {
    text-decoration: underline;
    color: var(--navy-soft); /* Optional: hover color matches your theme */
}



.article-banner {
    width: 90%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2rem;
    margin-left: 80px;
}
.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.article-content h4 {
    font-size: 1.8rem;
     color: var(--bg-main);   
}

/* Inline Gallery */
.inline-gallery {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}
.inline-gallery img {
    flex: 1;
    width: 15%;
    object-fit: cover;
    border-radius: 8px;
}

.article-rating {
    margin-top: 3rem;
    padding: 1.5rem 1.75rem;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.article-rating h3 {
    font-family: 'Acherus Grotesque', sans-serif;
    margin-bottom: 0.75rem;
    color: #082b87;
}

.rating-stars {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.rating-stars button {
    background: transparent;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.15rem 0.45rem;
    transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.rating-stars button:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 122, 6, 0.08);
    border-color: var(--orange-bright);
}

.rating-hint {
    font-size: 0.85rem;
    color: #6b7280;
    font-family: 'GT America', sans-serif;
}


/* Related Articles */
.related-section {
    margin-top: 3rem;
}

.related-section h3 {
    font-family: 'Acherus Grotesque', sans-serif;
    margin-bottom: 0.75rem;
    color: #082b87;
}

/* Horizontal scroll carousel */
.related-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    color: #020617;
}

.related-carousel article {
    min-width: 260px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    text-align: left;
    scroll-snap-align: start;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.related-carousel img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.related-carousel h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.related-carousel h4 a {
    color: #082b87;
    text-decoration: none;
}

.related-carousel h4 a:hover {
    text-decoration: underline;
}

.comments-section {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.comments-section h3 {
    font-family: 'Acherus Grotesque', sans-serif;
    margin-bottom: 1rem;
    color: #082b87;
}

/* Comment form */
.comment-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #111827;
    color: var(--light-lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.comment-inputs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comment-inputs textarea {
    width: 100%;
    min-height: 80px;
    resize: vertical;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-family: 'GT America', sans-serif;
    font-size: 0.95rem;
}

.comment-inputs .primary-btn {
    align-self: flex-end;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
}

/* Existing comments */
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment {
    display: flex;
    gap: 0.75rem;
}

.comment-body {
    background: #ffffff;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    flex: 1;
}

.comment-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.comment-name {
    font-weight: 600;
     color: var(--bg-main);
}

.comment-time {
    color: #9ca3af;
}

.comment-body p {
    font-size: 0.95rem;
    margin: 0.25rem 0 0;
    color: var(--bg-main);
}

PixelPress/
├── index.html
├── article.html   ← new file
├── css/
│   └── style.css
└── Images/
    ├── wolf-among-us-banner.jpg
    ├── Scene1.jpg
    ├── Scene2.jpg
    ├── related1.jpg
    ├── related2.jpeg
    ├── related3.jpg

/* Article Styles */

/* Community */

/* LEADERBOARD PAGE ------------------------------------- */
.leaderboard-main {
    background: #f7f5fb;
    padding: 3rem 0 4rem;
}

/* Header + filters */
.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.leaderboard-header h1 {
    font-family: 'Acherus Grotesque', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 0.3rem;
    color: #082b87;
}

.leaderboard-header p {
    font-family: 'GT America', sans-serif;
    color: #4b5563;
    max-width: 32rem;
    font-size: 0.95rem;
}

.leaderboard-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.leaderboard-filters label {
    font-family: 'GT America', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.leaderboard-filters select {
    font-family: 'GT America', sans-serif;
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    cursor: pointer;
}

/* Grid of cards */
.leaderboard-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Base card style */
.leaderboard-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.4rem;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Left side: rank + avatar + info */
.lb-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.lb-left h3 {
    color: var(--bg-main);
}

.lb-rank-badge {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'GT America', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    background: #e5e7eb;
    flex-shrink: 0;
}

.lb-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #111827;
    color: var(--light-lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
    color: var(--background);
}

.lb-user-info h3 {
    font-family: 'GT America', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.lb-user-info p {
    font-family: 'GT America', sans-serif;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Right side: XP bar */
.lb-right {
    flex: 1;
    max-width: 380px;
}

.lb-xp-row {
    display: flex;
    justify-content: space-between;
    font-family: 'GT America', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.lb-xp-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
}

.lb-xp-value {
    color: #4b5563;
}

.lb-xp-bar {
    position: relative;
    width: 100%;
    height: 7px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.lb-xp-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
      90deg,
      var(--orange-bright),
      var(--xp-green),
      var(--rank-purple)
    );
}

/* TOP 3 HIGHLIGHTS */
.leaderboard-card.top-1 {
    background-image:
      linear-gradient(#ffffff, #ffffff),
      linear-gradient(135deg, #facc15, #f97316);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
}

.leaderboard-card.top-2 {
    background-image:
      linear-gradient(#ffffff, #ffffff),
      linear-gradient(135deg, #e5e7eb, #9ca3af);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
}

.leaderboard-card.top-3 {
    background-image:
      linear-gradient(#ffffff, #ffffff),
      linear-gradient(135deg, #f97316, #92400e);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
}

/* Slight size emphasis for top 3 */
.leaderboard-card.top-1,
.leaderboard-card.top-2,
.leaderboard-card.top-3 {
    transform: translateY(0);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.leaderboard-card.top-1:hover,
.leaderboard-card.top-2:hover,
.leaderboard-card.top-3:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}



.forum-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.forum-card {
    display: flex;
    gap: 7rem;
    background: var(--text-main);
    padding: 3rem;
    border-radius: 10px;
    align-items: flex-start;
    flex: 1;
    margin-top: 2.5rem;
}

.forum-card img {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.forum-card h6 {
    color: var(--bg-main);
}
.forum-card p { 
 color: var(--bg-main);
}

.thread-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-family: 'GT America', sans-serif;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Review Grid */
.review-grid {
    display: flex;
    gap: 2rem;
    margin-top: -1rem;
}
.review-grid article {
    flex: 1;
    background: var(--text-main);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}
.review-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.review-grid h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--bg-main);
}

.review-grid p {
    margin-bottom: 0.5rem;
  color: var(--bg-main);
}

.forum-card h5 {
    margin: 0;
    color: var(--bg-main);
    font-size: 2rem;
    font-family: 'GT America', sans-serif;
    font-weight: bolder;
}

.forum-card h6 {
    font-size: 1.4rem;
    font-weight: lighter;
    font-stretch: wider;
    font-family: 'GT America', sans-serif;
    margin: 0.3rem 0;
}

.forum-card p {
    font-style: italic;
    margin: 0.5rem 0 1rem;
}

PixelPress/
├── community.html       ← New file
├── css/
│   └── style.css        ← Use existing one
└── Images/
    ├── spiderman.jpg
    ├── eldenring.jpg
    ├── borderlands.jpg
    ├── darkages.jpg
    ├── dynastywarriors.jpg

/* Community Forum Cards */

.community-main {
    background: #f7f5fb;
    padding: 3rem 0 4rem;
}

.community-header h1 {
    font-family: 'Acherus Grotesque', sans-serif;
    font-size: 2.4rem;
    color: #082b87;
    margin-bottom: 0.4rem;
}

.community-header p {
    font-family: 'GT America', sans-serif;
    color: #4b5563;
    max-width: 38rem;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}

/* Tabs */
.community-tabs {
    display: inline-flex;
    background: #e5e7eb;
    border-radius: 999px;
    padding: 0.18rem;
    gap: 0.15rem;
    margin-bottom: 2rem;
}

.tab-button {
    border: none;
    background: transparent;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    font-family: 'GT America', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    color: #4b5563;
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.tab-button.active {
    background: #ffffff;
    color: #082b87;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

/* Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Submit review card */
.submit-review-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.submit-review-card h2 {
    font-family: 'Acherus Grotesque', sans-serif;
    color: #082b87;
    margin-bottom: 0.5rem;
}

.submit-review-card p {
    font-family: 'GT America', sans-serif;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.submit-review-form label {
    display: block;
    font-family: 'GT America', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.submit-review-form input,
.submit-review-form textarea {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-family: 'GT America', sans-serif;
    font-size: 0.95rem;
}

.submit-review-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.review-actions {
    margin-top: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.attach-button {
    border: none;
    background: transparent;
    font-family: 'GT America', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    color: #4b5563;
}

/* Modal backdrop */
.post-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Modal window */
.post-modal {
    width: 100%;
    max-width: 520px;
    background: #0b1220;
    color: var(--text-main);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.post-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.post-modal-header h3 {
    font-family: 'Acherus Grotesque', sans-serif;
    font-size: 1.3rem;
}

.close-post-modal {
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 1.1rem;
    cursor: pointer;
}

.post-modal-form label {
    display: block;
    font-family: 'GT America', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.post-modal-form input,
.post-modal-form textarea {
    width: 100%;
    margin-top: 0.3rem;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid #1f2937;
    background: #020617;
    color: var(--text-main);
    font-family: 'GT America', sans-serif;
}

.post-modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

/* Actually hide the modal when [hidden] is present */
.post-modal-backdrop[hidden] {
    display: none !important;
}
/* Top Rated Games Section */

.top-rated {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}
.game-card {
    display: flex;
    gap: 2.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    margin-top: 1rem;
  }


.game-info {
    flex: 2;
}
.game-card img {
    width: 490px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.game-card h4 {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
    font-family: 'GT America', sans-serif;
    font-weight: bolder;
    color: var(--bg-main);

}

.game-card p {
    margin-bottom: 0.5rem;
    font-family: 'GT America', sans-serif;
    font-size: 19px;
color: var(--bg-main);
  }

/* Most Reviewed Section */
.most-reviews-grid {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}
.most-reviews-grid article {
    flex: 1;
    background: var(--text-main);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}
.most-reviews-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.most-reviews-grid h5 {
    font-size: 1.1rem;
    color: var(--bg-main);
}

.most-reviews-grid p {
    font-size: 15px;
    color: var(--bg-main);
}

PixelPress/
├── leaderboard.html       ← This page
├── css/
│   └── style.css          ← Add CSS below to your main file
└── Images/
    ├── blue-prince.jpg
    ├── split-fiction.jpg
    ├── kingdom-come.jpg
    ├── ff-rebirth.jpg
    ├── nba2k25.jpg
    ├── pga2k25.jpg


/* Top Rated Games Section */

/* ABOUT PAGE -------------------------------------------------- */

.about-main {
    /* soft lavender -> light background gradient */
    background: linear-gradient(
      180deg,
      var(--gray) 0%,
      #f7f5fb 40%,
      #ffffff 100%
    );
    padding: 3rem 0 4rem;
}

.about-hero h1 {
    font-family: 'Acherus Grotesque', sans-serif;
    font-size: 2.6rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.about-tagline {
    font-family: 'GT America', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-main);
    margin-bottom: 0.75rem;
}

.about-body {
    font-family: 'GT America', sans-serif;
    color: var(--gray);
    font-size: 0.98rem;
    max-width: 44rem;
    margin-bottom: 1rem;
}

/* Team grid */

.about-team {
    margin-top: 3rem;
}

.about-team h2 {
    font-family: 'Acherus Grotesque', sans-serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    margin-top: 1.5rem;
}

.team-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    margin: 0 auto 0.75rem;
    overflow: hidden;
    border: 3px solid var(--orange-soft);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-family: 'GT America', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--bg-main);
}

.team-card p {
    font-family: 'GT America', sans-serif;
    font-size: 0.85rem;
    color: #6b7280;
}


.about-hero,
.about-team {
    text-align: center;
}

.about-hero h1,
.about-team h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.about-hero p,
.about-team p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Contact section overrides */

.contact-section {
    margin-top: 3rem;
}

.contact-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    width: 100%;
    max-width: 600px;
}

.contact-form h2 {
    font-family: 'Acherus Grotesque', sans-serif;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-family: 'GT America', sans-serif;
    font-size: 0.95rem;
}

.contact-form .form-row {
    display: flex;
    gap: 0.75rem;
}

.contact-image {
    width: 520px;
    height: 600px;
    border-radius: 14px;
    object-fit: cover;
}

.contact-image2 {
    width: 600px;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}

/* Confirmation message */

.contact-confirm {
    font-family: 'GT America', sans-serif;
    font-size: 0.9rem;
    color: #059669;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-confirm.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-confirm[hidden] {
    display: none;
}

/* basic responsive tweak */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        flex-direction: column;
    }
    .contact-image {
        width: 100%;
    }
}

/* Extended Footer */
.extended-footer {
    background: var(--navy);
    color: var(--text-main);
    padding: 2rem;
    margin-top: 4rem;
}
.footer-columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-columns p {
      text-align: center;
}

.footer-columns h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.footer-columns ul {
    list-style: none;
    padding-left: 0;
}
.footer-columns ul li {
    margin-bottom: 0.5rem;
}
.footer-columns ul a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-columns ul a:hover {
    text-decoration: underline;
}
.social-icons a img {
    width: 24px;
    margin-right: 0.5rem;
}

PixelPress/
├── about.html       ← This page
├── css/
│   └── style.css          ← Add CSS below to your main file
└── Images/
    ├── about-team.jpg
    ├── setup-pic.jpg
    ├── kingdom-come.jpg
    ├── ff-rebirth.jpg
    ├── nba2k25.jpg
    ├── pga2k25.jpg
    ├── icon-facebook.jpg
    ├── icon-twitter.png
    ├── icon-instagram.jpg



PixelPress/
├── fonts/
│   ├── GtAmerica-Regular.woff2
│   ├── AcherusGrotesque.woff2
    └── nebula.woff2


    a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange-bright);
  outline-offset: 3px;
}


@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .news-grid,
  .weekly-grid,
  .review-grid,
  .forum-grid,
  .most-reviews-grid {
    flex-direction: column;
  }

  .forum-card,
  .news-grid article,
  .review-grid article {
    width: 100%;
  }

  .contact-grid {
    flex-direction: column;
  }
}