/* ============================================
   TopJoy34 - Free Social Casino Gaming Platform
   Main Styles - Dark Theme with Pink/Purple
   ============================================ */

/* ========== CSS Variables ========== */
:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --secondary-color: #9c27b0;
    --secondary-dark: #7b1fa2;
    --accent-color: #ff4081;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #1a1a24;
    --bg-card-hover: #242433;
    --text-light: #ffffff;
    --text-gray: #b8b8c8;
    --text-dark: #808090;
    --border-color: #2a2a3a;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --shadow-sm: 0 2px 8px rgba(233, 30, 99, 0.1);
    --shadow-md: 0 4px 16px rgba(233, 30, 99, 0.2);
    --shadow-lg: 0 8px 32px rgba(233, 30, 99, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-dark: linear-gradient(135deg, #1a1a24, #0a0a0f);
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    --transition: all 0.3s ease;
}

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* ========== Container ========== */
.tj34-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Header ========== */
.tj34-main-header {
    background: var(--bg-darker);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.tj34-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tj34-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.tj34-main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.tj34-main-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.tj34-main-nav a:hover,
.tj34-main-nav a.active {
    color: var(--text-light);
    background: var(--bg-card);
}

.tj34-main-nav a i {
    color: var(--primary-color);
}

.tj34-mobile-menu-toggle {
    display: none;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.tj34-mobile-menu-toggle:hover {
    transform: scale(1.05);
}

/* ========== Hero Section ========== */
.tj34-hero-section {
    position: relative;
    padding: 8rem 0 4rem;
    background: var(--gradient-dark);
    overflow: hidden;
}

.tj34-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(233, 30, 99, 0.1), transparent 70%);
    pointer-events: none;
}

.tj34-hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.tj34-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.tj34-hero-title i {
    color: var(--primary-color);
}

.tj34-hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.tj34-hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.tj34-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.tj34-hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.tj34-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tj34-badge i {
    color: var(--primary-color);
}

/* ========== Buttons ========== */
.tj34-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.tj34-btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.tj34-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tj34-btn-secondary {
    background: var(--bg-card);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.tj34-btn-secondary:hover {
    background: var(--primary-color);
}

.tj34-btn-play {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 2rem;
}

.tj34-btn-control {
    background: var(--bg-card);
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.tj34-btn-control:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.tj34-btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.tj34-btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ========== Sections ========== */
.tj34-section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tj34-section-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ========== Features Section ========== */
.tj34-features-section {
    padding: 4rem 0;
    background: var(--bg-darker);
}

.tj34-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tj34-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.tj34-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.tj34-feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tj34-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tj34-feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========== Games Grid ========== */
.tj34-games-preview-section,
.tj34-all-games-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.tj34-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tj34-games-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.tj34-game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.tj34-game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tj34-game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.tj34-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.tj34-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.tj34-game-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tj34-game-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-light);
}

.tj34-game-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tj34-view-all-games {
    text-align: center;
    margin-top: 3rem;
}

.tj34-games-filter {
    margin-bottom: 2rem;
}

.tj34-filter-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.tj34-games-count {
    font-weight: 600;
    color: var(--primary-color);
}

.tj34-no-games {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* ========== Disclaimer Section ========== */
.tj34-disclaimer-section {
    padding: 3rem 0;
    background: var(--bg-darker);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.tj34-disclaimer-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--bg-card);
    border: 2px solid var(--warning-color);
    border-radius: 16px;
    padding: 2rem;
}

.tj34-disclaimer-icon {
    font-size: 3rem;
    color: var(--warning-color);
    flex-shrink: 0;
}

.tj34-disclaimer-text h3 {
    font-family: var(--font-heading);
    color: var(--warning-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.tj34-disclaimer-text p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========== CTA Section ========== */
.tj34-cta-section {
    padding: 4rem 0;
    background: var(--gradient-dark);
    text-align: center;
}

.tj34-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tj34-cta-content h2 i {
    color: var(--primary-color);
}

.tj34-cta-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ========== Page Header ========== */
.tj34-page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: var(--gradient-dark);
    border-bottom: 2px solid var(--border-color);
}

.tj34-page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tj34-page-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* ========== Game Detail Page ========== */
.tj34-game-detail-header {
    padding: 2rem 0;
    background: var(--gradient-dark);
    border-bottom: 2px solid var(--border-color);
}

.tj34-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tj34-breadcrumb a {
    color: var(--text-gray);
}

.tj34-breadcrumb a:hover {
    color: var(--primary-color);
}

.tj34-breadcrumb .separator {
    color: var(--text-dark);
}

.tj34-breadcrumb .current {
    color: var(--text-light);
}

.tj34-game-subtitle {
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.tj34-game-container-section {
    padding: 3rem 0;
}

.tj34-game-wrapper {
    margin-bottom: 3rem;
}

.tj34-game-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--bg-darker);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.tj34-game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tj34-game-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.tj34-game-detail-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tj34-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.tj34-info-card h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tj34-info-card h3 i {
    color: var(--primary-color);
}

.tj34-info-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tj34-game-features {
    list-style: none;
}

.tj34-game-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.tj34-game-features li i {
    color: var(--success-color);
}

.tj34-related-games {
    margin-top: 3rem;
}

.tj34-related-games h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.tj34-related-games h3 i {
    color: var(--primary-color);
}

/* ========== About Page ========== */
.tj34-about-section {
    padding: 4rem 0;
}

.tj34-about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.tj34-about-text h2,
.tj34-about-text h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin: 2rem 0 1rem;
}

.tj34-about-text h2 {
    font-size: 2rem;
    margin-top: 0;
}

.tj34-about-text h3 {
    font-size: 1.5rem;
}

.tj34-about-text h3 i {
    color: var(--primary-color);
}

.tj34-about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tj34-about-list {
    list-style: none;
}

.tj34-about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.tj34-about-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.tj34-about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tj34-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.tj34-stat-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.tj34-stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.tj34-stat-info h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.tj34-stat-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.tj34-cta-box {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.tj34-cta-box h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.tj34-cta-box h2 i {
    color: var(--primary-color);
}

.tj34-cta-box p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ========== Contact Page ========== */
.tj34-contact-info-section {
    padding: 3rem 0;
}

.tj34-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tj34-info-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.tj34-info-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.tj34-info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tj34-info-item h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.tj34-info-item p {
    color: var(--text-gray);
}

.tj34-contact-form-section {
    padding: 3rem 0;
    background: var(--bg-darker);
}

.tj34-contact-form-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tj34-contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
}

.tj34-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.tj34-form-group {
    margin-bottom: 1.5rem;
}

.tj34-form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tj34-form-group label i {
    color: var(--primary-color);
}

.tj34-form-group input,
.tj34-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.tj34-form-group input:focus,
.tj34-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.tj34-form-group textarea {
    resize: vertical;
}

.tj34-form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.tj34-form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.tj34-form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

/* ========== Legal Pages ========== */
.tj34-legal-content-section {
    padding: 3rem 0;
}

.tj34-legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
}

.tj34-legal-content h2 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.tj34-legal-content h2:first-child {
    margin-top: 0;
}

.tj34-legal-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tj34-legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.tj34-legal-content ul li {
    color: var(--text-gray);
    list-style-type: disc;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.tj34-legal-notice {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid var(--warning-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.tj34-legal-notice p {
    color: var(--text-light);
    margin: 0;
}

/* ========== Footer ========== */
.tj34-main-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.tj34-footer-section h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tj34-footer-section h3 i {
    color: var(--primary-color);
}

.tj34-footer-section h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tj34-footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tj34-footer-section ul li {
    margin-bottom: 0.75rem;
}

.tj34-footer-section ul li a {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.tj34-footer-section ul li a:hover {
    color: var(--primary-color);
}

.tj34-footer-section ul li a i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.tj34-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.tj34-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: var(--transition);
}

.tj34-social-links a:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.tj34-footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.tj34-footer-bottom p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.tj34-footer-disclaimer {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .tj34-mobile-menu-toggle {
        display: block;
    }
    
    .tj34-main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        border-top: 1px solid var(--border-color);
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }
    
    .tj34-main-nav.active {
        max-height: 500px;
    }
    
    .tj34-main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .tj34-main-nav a {
        padding: 1rem 1.5rem;
        border-radius: 0;
    }
    
    .tj34-hero-title {
        font-size: 2.5rem;
    }
    
    .tj34-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .tj34-hero-description {
        font-size: 1rem;
    }
    
    .tj34-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tj34-section-title {
        font-size: 2rem;
    }
    
    .tj34-about-content {
        grid-template-columns: 1fr;
    }
    
    .tj34-form-row {
        grid-template-columns: 1fr;
    }
    
    .tj34-contact-form {
        padding: 2rem 1.5rem;
    }
    
    .tj34-legal-content {
        padding: 2rem 1.5rem;
    }
    
    .tj34-disclaimer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tj34-logo a {
        font-size: 1.4rem;
    }
    
    .tj34-logo i {
        font-size: 1.5rem;
    }
    
    .tj34-hero-section {
        padding: 4rem 0 2rem;
    }
    
    .tj34-hero-title {
        font-size: 2rem;
    }
    
    .tj34-page-header h1 {
        font-size: 2rem;
    }
    
    .tj34-games-grid {
        grid-template-columns: 1fr;
    }
}

