/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.card-suits {
    display: flex;
    gap: 6px;
    animation: pulse 2s ease-in-out infinite;
}

.suit {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.suit:hover {
    transform: scale(1.2) rotate(5deg);
}

.suit.hearts { 
    color: #ff6b6b; 
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}
.suit.spades { 
    color: #2c3e50; 
    text-shadow: 0 0 10px rgba(44, 62, 80, 0.5);
}
.suit.clubs { 
    color: #2c3e50; 
    text-shadow: 0 0 10px rgba(44, 62, 80, 0.5);
}
.suit.diamonds { 
    color: #ff6b6b; 
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.logo h1 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slogan {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd93d;
    transform: translateY(-2px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffd93d, #ff6b6b);
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

/* Main Content */
.main-content {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Section */
.left-section {
    text-align: center;
    animation: fadeInUp 1s ease;
}

.main-logo {
    margin-bottom: 50px;
    position: relative;
}

.logo-text {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.card-text {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.master-text {
    color: #ffd93d;
    text-shadow: 0 4px 20px rgba(255, 217, 61, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

.pro-text {
    color: #ff6b6b;
    text-shadow: 0 4px 20px rgba(255, 107, 107, 0.6);
    animation: glow 2s ease-in-out infinite alternate-reverse;
}

.chip-icon {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 28px;
    color: #ffd93d;
    animation: float 3s ease-in-out infinite;
}

/* Game Description */
.game-description {
    margin-top: 40px;
    text-align: center;
}

.subtitle {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.description-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

/* Game Features */
.game-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
}



/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Right Section */
.right-section {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease 0.3s both;
}

.phone-frame {
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 35px;
    padding: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotate(-8deg);
    transition: all 0.4s ease;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-frame:hover {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.game-screenshot {
    width: 300px;
    height: 540px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.game-table {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-header {
    text-align: center;
    padding: 12px;
}

.hitters-pot {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pot-amount {
    display: block;
    font-size: 16px;
    color: #ffd93d;
    margin-top: 4px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.players-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.player-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.player-info {
    text-align: center;
    color: white;
    font-size: 11px;
}

.player-name {
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.player-score {
    display: block;
    color: #ffd93d;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.drop-areas {
    display: flex;
    gap: 12px;
    margin: 12px 0;
}

.drop-area {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    color: white;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.drop-area:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.player-hand {
    margin: 12px 0;
}

.hand-cards {
    display: flex;
    gap: 3px;
    overflow-x: auto;
    padding: 6px 0;
}

.card {
    min-width: 28px;
    height: 38px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #2c3e50;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.game-controls {
    display: flex;
    gap: 6px;
    margin: 12px 0;
}

.control-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.control-btn.drop { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.control-btn.fight { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.control-btn.group { background: linear-gradient(135deg, #27ae60, #229954); }
.control-btn.dump { background: linear-gradient(135deg, #3498db, #2980b9); }

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.hand-value {
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.emoji {
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-chip {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 35px;
    color: #ffd93d;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.floating-cards {
    position: absolute;
    bottom: 20%;
    right: 15%;
}

.card-stack {
    position: relative;
}

.card-back {
    width: 45px;
    height: 65px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 8px;
    position: absolute;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.card-back:nth-child(1) {
    transform: rotate(-8deg);
    animation: float 5s ease-in-out infinite;
}

.card-back:nth-child(2) {
    transform: rotate(3deg) translateY(-6px);
    animation: float 5s ease-in-out infinite 0.7s;
}

.card-back:nth-child(3) {
    transform: rotate(-5deg) translateY(-12px);
    animation: float 5s ease-in-out infinite 1.4s;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 30px 0;
    margin-top: 60px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-link:hover {
    color: #ffd93d;
    transform: translateY(-2px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd93d;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.contact-info {
    color: white;
    font-size: 14px;
}

.contact-info a {
    color: #ffd93d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
    font-weight: 300;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes glow {
    0% { text-shadow: 0 4px 20px rgba(255, 217, 61, 0.6); }
    100% { text-shadow: 0 4px 30px rgba(255, 217, 61, 0.8); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideIn {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .logo-text {
        font-size: 42px;
    }
    
    .phone-frame {
        transform: none;
    }
    
    .phone-frame:hover {
        transform: scale(1.03);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .game-screenshot {
        width: 280px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 36px;
    }
    
    .game-screenshot {
        width: 260px;
        height: 460px;
    }
    
    .download-buttons {
        max-width: 280px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 13px;
    }
} 

/* Additional Content Sections */
.additional-sections {
    margin-top: 80px;
    padding: 0 20px;
}

.section-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Highlights Section */
.highlights-section {
    margin-bottom: 80px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.highlight-card h4 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Additional Sections */
@media (max-width: 768px) {
    .additional-sections {
        margin-top: 60px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .testimonial-card,
    .highlight-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .testimonials-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card,
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
} 