/*
Theme Name: Irish Casino No KYC
Theme URI: https://example.com/irish-casino-theme
Author: Your Name
Author URI: https://example.com
Description: Modern Irish-themed casino website with Celtic patterns, emerald green color scheme, and crypto casino listings. Features dark theme, responsive design, and beautiful Irish motifs.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: irish-casino
Tags: dark, green, casino, crypto, irish, celtic, responsive, custom-colors, custom-logo, featured-images
*/

:root {
  --primary-color: #00A86B;
  --secondary-color: #FFD700;
  --dark-green: #0A2F1F;
  --emerald: #1A5C3F;
  --gold: #FFA500;
  --text-light: #F5F5DC;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0D3B28;
  color: #F5F5DC;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
}

h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container img{
    margin: 0 auto;
    display: block;
}
.container table{
    margin: 0 auto;
}
.container h3{
    margin-top: 25px;
}
.container h4{
    margin-top: 25px;
    padding-left: 20px;
}
.container.pros{
    background: rgba(0, 168, 107, 0.1);
    border: 1px solid rgba(0, 168, 107, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 59, 40, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 168, 107, 0.2);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.site-logo img {
  width: 50px;
  height: 50px;
}
.site-main.contacts{
    padding-top:150px;
}
.comment-respond{
    background: rgba(26, 92, 63, 0.3);
    border: 1px solid rgba(0, 168, 107, 0.2);
    border-radius: 1rem;
    padding: 4rem 2rem;
    transition: all 0.3s;
    max-width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
}
.comment-reply-title{
    margin-top: unset !important;
    font-size: 24px;
}
.comment-form{
    display: flex;
    flex-direction: column;
    gap:5px;
}
.comment-form textarea, input{
    background: rgba(0, 168, 107, 0.2);
    border: 1px solid rgba(0, 168, 107, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: #F5F5DC;
}
.comment-form textarea{
    max-width: 500px;
    width: 100%;
    height: 110px;
    resize: none;
}
.comment-form-email input,
.comment-form-author input{
    max-width: 300px;
    width: 100%;
}
textarea::placeholder {
    color: #F5F5DC;
}
input::placeholder {
    color: #F5F5DC;
}
.site-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
    font-weight:700;
}

.site-description {
  font-size: 0.75rem;
  color: #888;
  margin: 0;
}

/* Navigation */
.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: #F5F5DC;
  font-weight: 500;
  transition: color 0.3s;
}

.main-navigation a:hover {
  color: var(--primary-color);
}
.main-navigation{
	/* margin-right:35%; */
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.png') center/cover no-repeat;
  opacity: 0.4;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: url('assets/celtic-pattern.png') repeat;
  background-size: 400px;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #aaa;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: #0D3B28;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: rgba(0, 168, 107, 0.1);
}

/* Casino Cards */
.casino-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); */
  gap: 2rem;
  padding: 4rem 0;
}

.casino-card {
  background: rgba(26, 92, 63, 0.3);
  border: 1px solid rgba(0, 168, 107, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.casino-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 168, 107, 0.2);
  border-color: var(--primary-color);
}

.casino-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.casino-logo {
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
}

.casino-rating {
  display: flex;
  gap: 0.25rem;
}

.shamrock {
  width: 20px;
  height: 20px;
}

.casino-bonus {
  background: linear-gradient(to right, rgba(255, 165, 0, 0.2), rgba(0, 168, 107, 0.2));
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.bonus-label {
  font-size: 0.875rem;
  color: #aaa;
  margin-bottom: 0.25rem;
}

.bonus-amount {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.crypto-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.badge {
  background: rgba(0, 168, 107, 0.2);
  border: 1px solid rgba(0, 168, 107, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

/* Footer */
.site-footer {
  background: rgba(10, 47, 31, 0.8);
  border-top: 1px solid rgba(0, 168, 107, 0.2);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column p {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #aaa;
  font-size: 0.875rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 168, 107, 0.1);
  color: #888;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .casino-grid {
    grid-template-columns: 1fr;
  }
  
  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Celtic Pattern Divider */
.celtic-divider {
  height: 3px;
  background: url('assets/celtic-pattern.png') repeat-x;
  background-size: 200px;
  opacity: 0.5;
  margin: 2rem 0;
}

/* Animation */
@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse-slow 3s ease-in-out infinite;
}
.page_grid{
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-areas: "main side";
	gap: 2rem;
}

.main {
    grid-area: main;
}

.side {
    grid-area: side;
}
@media (max-width: 780px) {
	.page_grid {
		display: grid;
		grid-template-areas:
			"side"
			"main";
		grid-template-columns: 100%;
	}

}
@media (max-width: 420px) {
		.quick_stats-container{
		grid-template-columns: repeat(auto-fit, minmax(150px, 200px)) !important;
	}
	.rating_container span:nth-of-type(2){
		display:none !important;
	}

}

table {
  border-collapse: collapse;
  /* white-space: nowrap; */
}
table, tr, td {
  border: 1px solid #fff;
}
td, th {
  padding: 8px 8px;
}
@media (max-width: 768px) {
  table {
    overflow-x: auto;
    white-space: nowrap;
    display: block;
  }
  td {
    width: 1%;
  }
}

.menu {
    position: relative;
}

.menu li{
    padding-left: 10px;
}
.menu li .sub-menu{
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    padding: 0;
    padding-top: 20px;
    width: 200px;
    background: rgba(13, 59, 40, 0.9);
}
.menu li {
    position: relative;
}
.menu li:hover .sub-menu{
    display: flex;
    flex-direction: column;
}

.custom_casino_list{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

h1,h2,h3,h4,h5 {
    color: #e3e1a1 !important;
}