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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

/* Header Styles */
.main-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #ffd700;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}


.site-logo {
    height: 80px;
    width: 190px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.dropdown-menu {
    position: relative;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 150px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 5px;
    border: 1px solid #ffd700;
}

.dropdown-menu:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-link:hover {
    background: #ffd700;
    color: #000;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-register,
.btn-login {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-register {
    background: #ffd700;
    color: #000;
}

.btn-register:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid #ffd700;
}

.btn-login:hover {
    background: #ffd700;
    color: #000;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    margin-top: 90px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffd700;
    color: #000;
}

.btn-primary:hover {
    background: #ffed4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

.btn-secondary:hover {
    background: #ffd700;
    color: #000;
}

.betting-graphic {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-element,
.dice-element,
.coin-element {
    position: absolute;
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.card-element {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.dice-element {
    top: 50px;
    right: 20px;
    animation-delay: 1s;
}

.coin-element {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: rgba(255, 215, 0, 0.05);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.advantage-description {
    color: #ccc;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.feature-description {
    color: #ccc;
    line-height: 1.6;
}

/* Sports Betting Section */
.sports-betting-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.sports-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.sports-text h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.sports-text p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.sports-list {
    list-style: none;
    color: #ccc;
}

.sports-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.popular-sports h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.sport-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.sport-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

/* Casino Section */
.casino-section {
    padding: 80px 0;
    background: rgba(255, 215, 0, 0.05);
}

.casino-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.casino-content {
    text-align: center;
}

.casino-text h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.casino-text p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.casino-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    color: #ccc;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.casino-feature strong {
    color: #ffd700;
}

/* Games Section */
.games-section {
    padding: 80px 0;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.games-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-button {
    padding: 12px 30px;
    background: transparent;
    color: #fff;
    border: 2px solid #ffd700;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: #ffd700;
    color: #000;
}

.games-content {
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
}

.game-card:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background: rgba(255, 215, 0, 0.1);
}

.bonus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.bonus-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.main-bonus h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.main-bonus p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.bonus-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    background: #ffd700;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-text {
    color: #ccc;
    font-size: 1.1rem;
}

.ongoing-promotions h4 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.promo-list {
    list-style: none;
    color: #ccc;
}

.promo-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: rgba(255, 215, 0, 0.1);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 20px 40px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #ffed4a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 50px 0 20px;
    border-top: 2px solid #ffd700;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

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

.footer-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-subtitle {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
}

.app-downloads {
    display: flex;
    gap: 15px;
}

.app-icon {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.1);
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-title {
    text-align: center;
    color: #ffd700;
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
}

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


/* Responsive Design */
@media (max-width: 1080px) {
 .main-navigation {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-navigation.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .sports-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .site-logo {
        height: 60px;
        width: 142px;
    }
    
    .btn-register,
    .btn-login {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {

.advantages-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-tabs {
        flex-direction: column;
        align-items: center;
    }
    
 .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .site-logo {
        height: 50px;
        width: 118px;
    }
    
    .btn-register,
    .btn-login {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

 .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .header-container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .features-section,
    .games-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .payment-icons {
        gap: 10px;
    }
    
    .site-logo {
        height: 40px;
        width: 95px;
    }
    
    .btn-register,
    .btn-login {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .site-logo {
        height: 35px;
        width: 83px;
    }
    
    .btn-register,
    .btn-login {
        padding: 4px 8px;
        font-size: 0.6rem;
    }
}



/* Payment & Security Section */
.payment-security-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.payment-security-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.payment-security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.payment-methods-info h3,
.security-info h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.payment-methods-info p,
.security-info p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.payment-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.payment-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.payment-category h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.payment-list {
    list-style: none;
    color: #ccc;
}

.payment-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.payment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.security-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.security-icon {
    font-size: 2rem;
    min-width: 40px;
}

.security-text h5 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.security-text p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.transaction-limits {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.transaction-limits h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.limits-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.limit-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.limit-method {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
}

.limit-min,
.limit-max {
    color: #ccc;
    font-size: 0.95rem;
}

/* Responsive Design для новой секции */
@media (max-width: 1080px) {
    .payment-security-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .limit-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .payment-security-section {
        padding: 50px 0;
    }
    
    .security-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .security-icon {
        margin-bottom: 10px;
    }
    
    .limits-table {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .payment-security-content {
        margin-bottom: 30px;
    }
    
    .transaction-limits {
        padding: 20px;
    }
    
    .limit-row {
        padding: 10px 15px;
    }
}



/* Getting Started Section */
.getting-started-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.getting-started-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.getting-started-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.steps-guide h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.steps-guide p {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.step-number {
    background: #ffd700;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step-content p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1rem;
}

.step-details {
    list-style: none;
    color: #ccc;
}

.step-details li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.quick-tips h3 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: scale(1.02);
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tip-card h5 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tip-card p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.account-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 40px;
}

.account-benefits h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.8rem;
    min-width: 30px;
}

.benefit-text {
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
}

.cta-getting-started {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cta-getting-started h4 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.cta-getting-started p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-get-started {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: #ffed4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1080px) {
    .getting-started-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .getting-started-section {
        padding: 50px 0;
    }
    
    .getting-started-content {
        margin-bottom: 30px;
    }
    
    .steps-grid {
        gap: 20px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .tips-grid {
        gap: 15px;
    }
    
    .tip-card {
        padding: 15px;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .account-benefits {
        padding: 25px;
    }
    
    .cta-getting-started {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .getting-started-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .steps-guide h3 {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 15px;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .step-details li {
        font-size: 0.8rem;
    }
    
    .quick-tips h3 {
        font-size: 1.4rem;
    }
    
    .tip-card {
        padding: 12px;
    }
    
    .tip-card h5 {
        font-size: 1rem;
    }
    
    .tip-card p {
        font-size: 0.8rem;
    }
    
    .account-benefits {
        padding: 20px;
    }
    
    .account-benefits h3 {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
    
    .cta-getting-started {
        padding: 20px;
    }
    
    .cta-getting-started h4 {
        font-size: 1.4rem;
    }
    
    .cta-getting-started p {
        font-size: 1rem;
    }
    
    .btn-get-started {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .getting-started-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .steps-guide h3 {
        font-size: 1.3rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .quick-tips h3 {
        font-size: 1.2rem;
    }
    
    .account-benefits h3 {
        font-size: 1.3rem;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
    
    .benefit-text {
        font-size: 0.8rem;
    }
    
    .cta-getting-started h4 {
        font-size: 1.2rem;
    }
    
    .btn-get-started {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}



