/* WishWin Casino CSS Styles */

/* Color Palette 
   Primary: #6747ED (purple - main brand color)
   Secondary: #FFC233 (gold - for highlights/CTAs)
   Dark: #1E1033 (dark purple - backgrounds)
   Light: #F4F1FF (light purple - text backgrounds)
   Text: #FFFFFF (white) on dark / #1A1A1A (near black) on light
   Accent: #FF5B96 (pink - for special elements)
*/

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #F4F1FF;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: #FF5B96;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

section {
    padding: 60px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FFC233;
    color: #1E1033;
    border: 2px solid #FFC233;
}

.btn-primary:hover {
    background-color: #FFD566;
    border-color: #FFD566;
    color: #1E1033;
}

.btn-secondary {
    background-color: transparent;
    color: #FFC233;
    border: 2px solid #FFC233;
}

.btn-secondary:hover {
    background-color: #FFC233;
    color: #1E1033;
}

/* Header */
header {
    background-color: #1E1033;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #FFFFFF;
    font-weight: 600;
}

nav ul li a:hover {
    color: #FFC233;
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero {
    background-color: #1E1033;
    color: #FFFFFF;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    /* max-width: 600px; */
    margin-bottom: 30px;
}

.hero h1 {
    max-width: 500px;
    margin-bottom: 30px;
	margin-right: 40px;
}

.bonus-card {
    background: linear-gradient(135deg, #6747ED, #FF5B96);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(30, 16, 51, 0.3);
    margin-bottom: 30px;
    width: 100%;
    max-width: 400px;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: #FFC233;
    margin-bottom: 15px;
}

.bonus-eligible {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(30, 16, 51, 0.3);
}

/* Welcome Bonus Section */
.welcome-bonus {
    background-color: #FFFFFF;
}

.bonus-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-info, .bonus-terms {
    background-color: #F4F1FF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.disclaimer {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* All Promotions Section */
.all-promotions {
    background-color: #F4F1FF;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.promotion-card {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.promotion-card h3 {
    color: #6747ED;
}

/* Bonus Crab Section */
.bonus-crab {
    background: linear-gradient(135deg, #1E1033, #6747ED);
    color: #FFFFFF;
    padding: 80px 0;
}

.crab-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.crab-image {
    text-align: center;
}

.crab-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.crab-details h2 {
    color: #FFC233;
}

/* Trustworthy Section */
.trustworthy {
    background-color: #FFFFFF;
}

.trust-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    align-items: center;
}

.license-badges {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer */
footer {
    background-color: #1E1033;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h3 {
    color: #FFC233;
    margin-bottom: 20px;
}

footer a {
    color: #F4F1FF;
}

footer a:hover {
    color: #FFC233;
}

.responsible-gaming ul {
    list-style: none;
    margin-left: 0;
}

.site-links ul {
    list-style: none;
    margin-left: 0;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    .license-badges {
        margin-top: 20px;
    }
    
    .crab-content {
        grid-template-columns: 1fr;
    }
    
    .crab-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .bonus-card {
        padding: 20px;
    }
    
    .bonus-value {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}



/* Banking Section */
.banking {
    background-color: #F4F1FF;
    padding: 60px 0;
}

.banking-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.banking-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
}

.banking-table th {
    background-color: #6747ED;
    color: #FFFFFF;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.banking-table th:first-child {
    border-top-left-radius: 10px;
}

.banking-table th:last-child {
    border-top-right-radius: 10px;
}

.banking-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #F4F1FF;
}

.banking-table tr:last-child td {
    border-bottom: none;
}

.banking-table tr:hover {
    background-color: #F8F6FF;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-method img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.banking-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Games Section */
.games {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 16, 51, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play, .btn-demo {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
}

.btn-play {
    background-color: #FFC233;
    color: #1E1033;
}

.btn-demo {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.btn-demo:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #1E1033;
}

.game-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.games-cta {
    text-align: center;
}

/* FAQ Section */
.faq {
    background-color: #F4F1FF;
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #6747ED;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #6747ED;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}


/* Responsive adjustments for the new sections */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banking-table th, 
    .banking-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .payment-method span {
        font-size: 0.9rem;
    }

    .logo {
        display: none;
    }

    .hero-content {
        display: block;
    }

    .bonus-card {
        max-width: 100%;
    }

    .hero h1 {
        text-align: center;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-method {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
.hero-content {display:block;}
.logo {display:none;}
.bonus-card {max-width:100%;}
.hero h1 {text-align: center;max-width: 100%;}
}
/* Sparkling heading effect */
.sparkle-heading {
  font-size: 32px;
  font-weight: bold;
  color: #000; /* black text */
  text-align: center;
  text-shadow: 
    0 0 5px #FFD700,
    0 0 10px #FFD700,
    0 0 15px #FFA500,
    0 0 20px #FFD700;
  animation: sparkle 1.5s ease-in-out infinite alternate;
}

@keyframes sparkle {
  0% {
    text-shadow:
      0 0 5px #FFD700,
      0 0 10px #FFD700,
      0 0 15px #FFA500,
      0 0 20px #FFD700;
  }
  100% {
    text-shadow:
      0 0 10px #FFD700,
      0 0 20px #FFD700,
      0 0 30px #FFA500,
      0 0 40px #FFD700;
  }
}
