/* Landing Page Styles - Black and Orange Theme */

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --dark-gray: #2d2d2d;
    --orange: #ee5007;
    --orange-hover: #c01f27;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Header/Navigation */
.navbar {
    --bs-navbar-padding-y: 0;
    background-color: transparent !important;
    background: transparent !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    margin: 0 !important;
    border: none !important;
    transition: background-color 0.6s ease, background 0.6s ease, box-shadow 0.6s ease, position 0s ease;
    will-change: background-color, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.navbar.navbar-dark {
    background-color: transparent !important;
    background: transparent !important;
}

.navbar.navbar-scrolled {
    background-color: var(--primary-black) !important;
    background: var(--primary-black) !important;
    position: fixed !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.navbar.navbar-scrolled.navbar-dark {
    background-color: var(--primary-black) !important;
    background: var(--primary-black) !important;
}

.navbar .container {
    background-color: transparent !important;
    background: transparent !important;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-brand {
    color: var(--white) !important;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    line-height: 1;
    --bs-navbar-brand-padding-y: 0;
}

.navbar-brand img {
    width: 150px;
    height: auto;
    object-fit: contain;
    display: block;
    transform: scale(1.4);
    transform-origin: left center;
    margin-left: 80px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    border-radius: var(--border-radius-large);
    margin: 10px;
    padding: 10px 20px;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link[href="#section_1"]::after {
    display: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--orange) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link[href="#section_1"]:hover::after,
.navbar-nav .nav-link[href="#section_1"].active::after {
    display: none;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    padding-top: 70px;
}

.hero-section .container {
    position: relative;
    min-height: 85vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 4.3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    margin-top: -15rem;
}

.btn-claim-bonus {
    background-color: var(--orange);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-claim-bonus:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.btn-claim-bonus .bi-gift {
    display: inline-block;
    font-size: 1.5em;
    animation: giftPulse 1s ease-in-out infinite;
}

@keyframes giftPulse {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    10% {
        transform: rotate(8deg) scale(1.2);
    }
    20% {
        transform: rotate(0deg) scale(1);
    }
    20.01%, 100% {
        transform: rotate(0deg) scale(1);
    }
}

.platform-links-container {
    position: absolute;
    bottom: 22vh;
    left: 0;
    right: 0;
    padding: 2rem 0;
    z-index: 2;
}

.platform-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.platform-link:hover {
    transform: translateY(-5px);
}

.platform-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.platform-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: giftPulse 1s ease-in-out infinite;
    transition: transform 0.3s;
}

.platform-link:hover .platform-icon {
    transform: scale(1.05);
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.platform-label {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: color 0.3s;
}

.platform-link:hover .platform-label {
    color: var(--orange);
}

/* Heartbeat Animation - single beat every 3 seconds */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    4% {
        transform: scale(1.08);
    }
    8% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

/* Section Styling */
.section {
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-title {
    font-family: "Outfit", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--orange);
}

/* Free Bonus Section */
.free-bonus-section {
    position: relative;
}

.free-bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.free-bonus-section .container {
    position: relative;
    z-index: 2;
}

.free-bonus-container {
    display: flex;
    gap: 1rem;  
}

.free-bonus-links {
    margin-left: 6rem;
}

.free-bonus-title {
    font-family: "Outfit", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.free-bonus-images {
    flex: 0 0 50%;
}

.brand-link-group {
    margin-bottom: 1.25rem;
}

.brand-link-group:last-child {
    margin-bottom: 0;
}

.bonus-link-item {
    margin-bottom: 1rem;
}

.bonus-link-item:last-child {
    margin-bottom: 0;
}

.bonus-link-item a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.bonus-link-item a:hover {
    text-decoration: underline;
    color: #39ff7b !important;
}

.bonus-link-item a .bi-gift,
.bonus-link-item strong .bi-gift {
    display: inline-block;
    animation: giftPulse 1s ease-in-out infinite;
    margin-right: 0.4rem;
    color: var(--white) !important;
}

.bonus-link-item strong {
    font-size: 1.1rem;
    line-height: 1.4;
}

.bonus-link-item p {
    margin-top: 0.35rem;
    color: var(--white);
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.3;
}

.brand-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-image-wrapper {
    border-radius: 30px !important;
    overflow: hidden !important;
    display: block;
    width: 70%;
    min-height: 250px;
    max-height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: transparent;
    position: relative;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
}

.gallery-image-wrapper:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 90%;
    height: 90%;
    min-height: 250px;
    max-height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 30px !important;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
}

/* Games Section */
#section_3 .section-title {
    color: #000000;
}

#section_4 .section-title {
    color: #000000;
}

.games-grid {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.games-column {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    background-color: #f0f0f0;
    width: 95%;
    margin: 0 auto 30px;
}

.game-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    max-width: 100%;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.4s ease;
    z-index: 1;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card:hover .game-overlay {
    background-color: rgba(0, 0, 0, 0.9);
}

.game-platform-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    z-index: 2;
    position: relative;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-platform-links {
    opacity: 1;
}

.game-platform-link {
    background-color: var(--orange) !important;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    z-index: 3;
    position: relative;
    display: inline-block;
    min-width: 150px;
}

.game-platform-link:hover {
    background-color: var(--orange-hover);
    color: var(--white);
    transform: translateY(-2px);
}

/* Brand Ambassadors */
.ambassadors-grid {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.ambassadors-column {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.ambassador-card {
    position: relative;
    width: 95%;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto 30px;
}

.ambassador-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 55px rgba(0, 0, 0, 0.2);
}

.ambassador-image-wrapper {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}

.ambassador-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.ambassador-info-section {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 95%;
    max-width: 500px;
    background-color: var(--orange);
    padding: 2rem;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
    text-align: left;
}

.ambassador-card:hover .ambassador-info-section {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ambassador-name,
.ambassador-brand,
.ambassador-profession,
.ambassador-social {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.ambassador-social {
    margin-bottom: 0;
}

.ambassador-label {
    font-weight: normal;
    color: var(--white);
    flex-shrink: 0;
    text-align: left;
    min-width: 140px;
    margin-right: 0.5rem;
}

.ambassador-value {
    font-weight: normal;
    color: var(--white);
    text-align: left;
}

.ambassador-divider {
    height: 1px;
    background-color: var(--white);
    margin: 0.75rem 0;
    opacity: 0.3;
}

.ambassador-link {
    color: var(--white);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.ambassador-link:hover {
    opacity: 0.7;
}

/* About Us Section */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#section_5 .section-title {
    color: #000000;
    font-family: "Outfit", Sans-serif;
    font-size: 40px;
    font-weight: 600;
}

#section_5 .section-subtitle {
    color: #000000;
    font-family: "Outfit", Sans-serif;
    font-size: 30px;
    font-weight: 600;
}

#section_5 {
    background-color: #f0f8ff;
    padding: 2.5rem 0 2.75rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.about-content .section-title {
    margin-bottom: 0.75rem;
}

.about-content .section-subtitle {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-description {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #717275;
    text-align: justify;
    margin: 0 auto;
    font-family: 'Outfit', sans-serif;
}

/* Contacts Section */
#section_6.contacts-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 4rem 0;
    min-height: 60vh;
    display: block;
}

.contacts-heading .section-title {
    color: #0f172a;
    margin-bottom: 2rem;
}

.contacts-subtitle {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contacts-toggle {
    display: inline-flex;
    background: #e8edf9;
    padding: 0.4rem;
    border-radius: 999px;
    gap: 0.35rem;
    box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.12);
}

.contacts-toggle-btn {
    border: none;
    background: transparent;
    padding: 0.65rem 1.65rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.15rem;
    color: #1f2933;
    transition: all 0.25s ease;
}

.contacts-toggle-btn.active {
    background: #ffffff;
    color: #ffc107;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.contacts-toggle-btn:not(.active):hover {
    background: #ffffff;
    color: #ffc107;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.contact-card-panel {
    background: #ffffff;
    border-radius: 32px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    max-width: 960px;
    margin: 0 auto;
    margin-top: 50px;
}

.contact-tab {
    display: none;
}

.contact-tab.is-active {
    display: block;
    animation: fadeInUp 0.35s ease;
}

.contact-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.contact-link-grid.contact-count-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-link-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem;
    border-radius: 22px;
    background: transparent;
    text-decoration: none;
    color: #0f172a;
    box-shadow: none;
}

.contact-link-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    background: transparent;
}

.contact-icon-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.livechat-icon {
    background: transparent;
}

.whatsapp-icon {
    background: transparent;
}

.contact-link-label {
    display: block;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: #0f172a;
}

.contact-empty-state {
    text-align: center;
    color: #94a3b8;
    margin: 0;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    padding: 0 0 2.5rem;
    border-top: 2px solid var(--orange);
}

.footer-hero-bar {
    background-color: var(--orange);
    width: 100%;
    padding: 2rem 0;
}

.footer-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: #fff;
    flex-wrap: wrap;
}

.footer-hero-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex: 1 1 420px;
    line-height: 1.1;
}

.footer-hero-social {
    display: flex;
    gap: 1.25rem;
}

.footer-hero-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    transition: background 0.3s ease;
    box-shadow: none !important;
    border: none;
    text-shadow: none !important;
    filter: none !important;
}

.footer-hero-social a i {
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
}

.footer-hero-social a:hover {
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
}

.footer-hero-social a:hover i {
    animation: spin-icon 2s linear infinite;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
}

@keyframes spin-icon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.footer-content-wrapper {
    padding: 2.25rem 0 0;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.footer-column:nth-child(2),
.footer-column:nth-child(3) {
    margin-left: 13rem;
}

.footer-column-title {
    color: #ffd166;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.footer-link-list li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link-list li a:hover {
    color: var(--orange);
}

.footer-contact-text {
    color: #f2f2f2;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.footer-contact-text a {
    color: #f2f2f2;
    text-decoration: none;
}

.footer-contact-text a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.footer-headquarter {
    margin-top: 2rem;
}

.footer-headquarter a {
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    transition: color 0.3s ease;
}

.footer-headquarter a i {
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

.footer-headquarter a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: calc(100% - 1.5rem);
    height: 1px;
    background-color: #ffffff;
    border: none;
    border-radius: 0;
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, 
                background-color 0.3s ease, border 0.3s ease, bottom 0.3s ease,
                left 0.3s ease, transform 0.3s ease;
    transform-origin: left center;
    transform: translateY(0);
}

.footer-headquarter a:hover {
    color: var(--orange);
}

.footer-headquarter a:hover i {
    color: var(--orange);
}

.footer-headquarter a:hover::after {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--orange);
    bottom: 50%;
    transform: translateY(50%);
    left: calc(100% - 1.4rem);
    transform-origin: center;
}

.footer-legal {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #ffffff;
}

.footer-legal-text {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--orange);
    text-decoration: underline;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    background-color: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top-btn i {
    font-weight: bold;
}

.back-to-top-btn.show {
    display: flex !important;
    opacity: 1;
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top-btn:active {
    transform: translateY(-1px);
}

/* Responsive */
@media screen and (min-width: 1024px) and (max-width: 1440px) {
    .navbar-brand img {
        width: 120px;
        transform: scale(3);
        transform-origin: left center;
        margin-left: 50px;
    }
    
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .navbar-brand img {
        margin-left: 20px;
        transform: scale(1.2);
    }
    
    .platform-links {
        gap: 4rem;
    }
    
    .platform-icon {
        width: 70px;
        height: 70px;
    }
    
    .free-bonus-links {
        margin-left: 2rem;
    }
    
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        margin-left: 0;
    }
}

@media (max-width: 1024px) {
    .section-title,
    .free-bonus-title {
        font-size: 30px;
    }
    
    .platform-links {
        gap: 3rem;
    }
    
    .platform-icon {
        width: 70px;
        height: 70px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    /* Navigation */
    .navbar {
        background-color: transparent !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-brand {
        font-size: 1rem;
        color: var(--white) !important;
    }
    
    .navbar-brand img {
        width: 120px;
        transform: scale(1.4);
        transform-origin: left center;
        margin-left: 0;
        max-width: 120px;
    }
    
    .navbar-collapse {
        background-color: var(--white);
        margin-top: 10px;
        border-radius: 8px;
        padding: 10px;
    }
    
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0.75rem 0.5rem;
        margin: 5px 0;
        font-size: 0.9rem;
        color: var(--primary-black) !important;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 70vh;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        margin-top: -10rem;
        padding: 0 1rem;
        line-height: 1.2;
    }
    
    .btn-claim-bonus {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin-bottom: -15rem;
    }
    
    .platform-links-container {
        bottom: 10vh;
        padding: 5rem 0;
        position: relative;
    }
    
    .platform-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .platform-icon {
        width: 60px;
        height: 60px;
    }
    
    .platform-label {
        font-size: 0.75rem;
    }
    
    /* Section Styling */
    .section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .section-title,
    .free-bonus-title {
        font-size: 22px;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Free Bonus Section */
    .free-bonus-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .free-bonus-links {
        margin-left: 0;
        padding: 0 1rem;
        width: 100%;
    }
    
    .free-bonus-title {
        text-align: center;
    }
    
    .free-bonus-images {
        flex: 1;
        padding: 0 1rem;
        width: 100%;
    }
    
    .bonus-link-item a {
        font-size: 1rem;
    }
    
    .bonus-link-item strong {
        font-size: 1rem;
    }
    
    .bonus-link-item p {
        font-size: 0.85rem;
    }
    
    .brand-divider {
        margin: 1.5rem 0;
    }
    
    .image-gallery {
        gap: 1.5rem;
        align-items: center;
    }
    
    .gallery-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-image {
        width: 100%;
    }
    
    /* Games Section */
    .games-grid {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .games-column {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .game-card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .game-platform-link {
        min-width: 120px;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Brand Ambassadors */
    .ambassadors-grid {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .ambassadors-column {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .ambassador-card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .ambassador-info-section {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
    
    .ambassador-name,
    .ambassador-brand,
    .ambassador-profession,
    .ambassador-social {
        font-size: 0.9rem;
        gap: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ambassador-label {
        min-width: auto;
        margin-bottom: 0.25rem;
    }

    /* About Us Section */
    .about-content {
        padding: 0 1rem;
    }
    
    .about-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Contacts Section */
    #section_6.contacts-section {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .contacts-heading {
        padding: 0 1rem;
    }
    
    .contacts-heading .section-title {
        font-size: 22px;
        margin-bottom: 1.5rem;
    }
    
    .contacts-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .contact-card-panel {
        padding: 1.5rem 1rem;
        margin-top: 30px;
        border-radius: 20px;
    }

    .contacts-toggle {
        width: 100%;
        margin: 0 1rem;
    }

    .contacts-toggle-btn {
        flex: 1;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .contact-link-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .contact-link-grid.contact-count-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-link-pill {
        padding: 1rem 0.75rem;
    }
    
    .contact-link-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .contact-link-label {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 0 0 1.5rem;
    }
    
    .footer-hero-bar {
        padding: 0.5rem 0;
    }
    
    .footer-hero {
        display: block;
        text-align: left;
        padding: 0 1rem;
    }
    
    .footer-hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        padding: 0;
        margin: 0 0 0.5rem 0;
    }

    .footer-hero-social {
        display: flex;
        justify-content: flex-start;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .footer-hero-social a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .footer-content-wrapper {
        padding: 1rem 1rem 0;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        margin-left: 0;
    }
    
    .footer-column-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .footer-link-list {
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem 1rem;
    }
    
    .footer-link-list li a {
        font-size: 0.9rem;
    }
    
    .footer-contact-text {
        font-size: 0.9rem;
    }
    
    .footer-headquarter {
        margin-top: 1rem;
    }
    
    .footer-headquarter a {
        font-size: 0.9rem;
    }

    .footer-legal {
        flex-direction: column;
        text-align: left;
        gap: 0.75rem;
        padding-top: 0.75rem;
        margin-top: 1.5rem;
        align-items: flex-start;
    }
    
    .footer-legal-text {
        font-size: 0.85rem;
        order: 2;
    }
    
    .footer-legal-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem 1rem;
        order: 1;
    }
    
    .footer-legal-links a {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    /* Back to Top Button */
    .back-to-top-btn {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title,
    .free-bonus-title {
        font-size: 20px;
    }
    
    .platform-links {
        gap: 1rem;
    }
    
    .platform-icon {
        width: 50px;
        height: 50px;
    }
    
    .platform-label {
        font-size: 0.7rem;
    }
    
    .contact-link-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-link-grid.contact-count-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-hero-title {
        font-size: 1.25rem;
    }
}

/* Coin Rain Animation */
.coin-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.coin {
    position: absolute;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 9999;
    animation: coinFall linear forwards;
}

.coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes coinFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

