:root {
    --primary-purple: #9d4edd;
    --secondary-purple: #7b2cbf;
    --dark-bg: #1a1625;
    --darker-bg: #13111d;
    --light-text: #ffffff;
    --text-secondary: #e2e2e2;
    --highlight: #c77dff;
    --pink: #e831b4;
}

/* Temel Stiller */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Raleway', sans-serif;
    color: var(--light-text);
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: rgba(19, 17, 29, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(157, 78, 221, 0.2);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-text) !important;
}

.navbar-brand span {
    color: var(--pink);
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(to right, var(--pink), var(--highlight));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--darker-bg), var(--secondary-purple));
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.display-4 {
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.lead {
    color: var(--text-secondary);
    font-size: 1.0rem;
}

/* Promo Cards */
.promo-card .card {
    background: var(--darker-bg);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.promo-card .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
}

.promo-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
}

.card-title {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.promo-code {
    margin: 1.5rem 0;
}

.code-label {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.code-value {
    color: var(--pink);
    font-weight: 700;
}

.code-type {
    color: var(--primary-purple);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-claim {
    background: linear-gradient(45deg, var(--pink), var(--primary-purple));
    color: var(--light-text);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-claim:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 49, 180, 0.4);
}

.rating {
    color: var(--pink);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.social-link {
    color: var(--light-text);
    text-decoration: none;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--pink);
    transform: translateY(-3px);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .promo-card .card {
        margin-bottom: 2rem;
    }
}

/* Notification Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    background: linear-gradient(45deg, var(--primary-purple), var(--pink));
    color: var(--light-text);
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    opacity: 0;
    animation: slideIn 0.3s forwards;
    font-weight: 500;
}

.notification.success {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.notification.error {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.notification-icon {
    font-size: 20px;
}

.notification-message {
    flex-grow: 1;
}

.notification-close {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* Dark Dropdown Styles */
.dark-dropdown {
    background-color: var(--darker-bg);
    border: 1px solid rgba(157, 78, 221, 0.2);
    padding: 0.5rem;
}

.dark-dropdown .dropdown-item {
    color: var(--light-text);
    padding: 0.7rem 1.2rem;
    transition: all 0.3s ease;
}

.dark-dropdown .dropdown-item:hover {
    background: linear-gradient(45deg, var(--primary-purple), var(--pink));
    color: white;
    transform: translateX(5px);
}

/* Discord Button - hover'da çizgi olmadan */
.discord-btn {
    background: linear-gradient(45deg, #7289da, #5865F2);
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 8px;
    margin-left: 1rem;
    transition: all 0.3s ease !important;
}

.discord-btn::after {
    display: none; /* Alt çizgiyi kaldırır */
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
    opacity: 0.9;
}

.discord-btn i {
    margin-right: 0.5rem;
}

/* Dark Dropdown Styles - daha doğal hover efekti */
.dark-dropdown {
    background-color: var(--darker-bg);
    border: 1px solid rgba(157, 78, 221, 0.2);
    padding: 0.5rem;
    min-width: 180px;
}

.dark-dropdown .dropdown-item {
    color: var(--light-text);
    padding: 0.7rem 1.2rem;
    transition: all 0.2s ease;
    background: transparent;
}

.dark-dropdown .dropdown-item:hover {
    background: rgba(157, 78, 221, 0.1);
    color: var(--pink);
    transform: none;
    padding-left: 1.5rem;
}

/* Navbar Dropdown Hover Effect */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .discord-btn {
        margin: 1rem 0;
        text-align: center;
    }
    
    .dark-dropdown {
        background-color: transparent;
        border: none;
    }
    
    .dark-dropdown .dropdown-item:hover {
        background: rgba(157, 78, 221, 0.1);
        padding-left: 1.5rem;
    }
    
    .nav-item.dropdown:hover .dropdown-menu {
        animation: none;
    }
}

.info-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    backdrop-filter: blur(10px);
}

.info-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-section {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .info-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* View All Button Styles */
.view-all-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-purple), var(--pink));
    color: var(--light-text);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-all-btn:hover {
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.4);
}

.view-all-btn .fa-arrow-right {
    transition: transform 0.3s ease;
}

.view-all-btn:hover .fa-arrow-right {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .view-all-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Elegant Section Styles */
.why-choose-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(19, 17, 29, 0.95), rgba(157, 78, 221, 0.05));
    border-radius: 30px;
    border: 1px solid rgba(157, 78, 221, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 2.5rem;
}

.intro-text {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.9;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.list-intro {
    color: var(--light-text);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 900px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(157, 78, 221, 0.08);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.1);
}

.feature-number {
    background: linear-gradient(45deg, var(--primary-purple), var(--pink));
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
}

.feature-item strong {
    color: var(--light-text);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #fff, var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

.conclusion-text {
    color: var(--pink);
    font-weight: 500;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.1);
}

/* Section Divider */
.section-divider {
    position: relative;
    height: 80px;
    margin: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(157, 78, 221, 0.2) 15%,
        var(--pink) 50%,
        rgba(157, 78, 221, 0.2) 85%,
        transparent
    );
}

.divider-icon {
    background: linear-gradient(145deg, var(--darker-bg), var(--dark-bg));
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(157, 78, 221, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.divider-icon:hover {
    transform: rotate(225deg);
}

.divider-icon i {
    color: var(--pink);
    font-size: 1.4rem;
    transform: rotate(-45deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 2rem;
        margin: 3rem auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Welcome Section Styles */
.welcome-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem;
    background: linear-gradient(165deg, rgba(19, 17, 29, 0.97), rgba(157, 78, 221, 0.08));
    border-radius: 40px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.intro-message {
    text-align: center;
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--pink);
    line-height: 1.8;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-desc {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

/* Offer Cards */
.offer-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.offer-item {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(157, 78, 221, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-purple), var(--pink));
    opacity: 0;
    transition: all 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    background: rgba(157, 78, 221, 0.08);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.1);
}

.offer-item:hover::before {
    opacity: 1;
}

.offer-item h4 {
    color: var(--light-text);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #fff, var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.offer-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
    margin: 0;
}

/* Icon styles if you want to add icons */
.offer-item .icon {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.offer-item:hover .icon {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .offer-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offer-cards {
        grid-template-columns: 1fr;
    }

    .offer-item {
        padding: 2rem 1.5rem;
    }

    .offer-item h4 {
        font-size: 1.2rem;
    }
}

/* Commitment Items */
.commitment-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.commitment-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(157, 78, 221, 0.15);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    background: rgba(157, 78, 221, 0.08);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.1);
}

.commitment-item i {
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.commitment-item h4 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.commitment-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* Join Section */
.join-section {
    text-align: center;
    padding: 3rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(157, 78, 221, 0.15);
}

.join-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .welcome-section {
        padding: 2rem;
        margin: 3rem auto;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .section-subtitle {
        font-size: 1.6rem;
    }

    .offer-item,
    .commitment-item {
        padding: 1.5rem;
    }

    .join-section {
        padding: 2rem;
    }

    .join-text {
        font-size: 1rem;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #111;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(157, 78, 221, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* About Section */
.footer-about {
    max-width: 500px;
}

.footer-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.footer-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Logo Section */
.footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.gamble-aware-logo {
    max-width: 200px;
    opacity: 0.6;
}

/* Links Section */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--pink);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.social-icon {
    color: #666;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--pink);
    transform: translateY(-3px);
}

/* Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .footer-social {
        grid-column: 3;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about,
    .footer-logo,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        order: -1;
    }

    .footer-about {
        max-width: 100%;
    }
}

.row.g-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.col-md-4 {
    flex: 0 0 auto;
    width: calc(33.333% - 1.35rem); /* 33.333% width with gap consideration */
    max-width: 400px;
    min-width: 300px;
}