/* ===================================
   OutbackSpawn.online - Additional Styles
   Page-specific and responsive enhancements
   =================================== */

/* Game Information */
.game-information {
    padding: 4rem 0;
    background: #0f0f0f;
}

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

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.detail-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.detail-content {
    color: #00d4ff;
    font-weight: 500;
    font-size: 1.125rem;
}

/* Main Game Section */
.main-game {
    padding: 4rem 0;
    background: #0a0a0a;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
}

.game-header {
    text-align: center;
    margin-bottom: 3rem;
}

.game-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.game-description {
    font-size: 1.125rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

.game-frame-container {
    margin-bottom: 3rem;
}

.game-frame-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.game-info-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-title,
.instructions-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.features-list,
.instructions-list {
    list-style: none;
    color: #a0a0a0;
}

.features-list li,
.instructions-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.instructions-list li {
    counter-increment: step-counter;
}

.instructions-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    background: rgba(0, 212, 255, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* Company Story */
.company-story {
    padding: 4rem 0;
    background: #0f0f0f;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.story-description {
    font-size: 1.125rem;
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Mission & Vision */
.mission-vision {
    padding: 4rem 0;
    background: #0a0a0a;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.card-icon img {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.card-description {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Values */
.values {
    padding: 4rem 0;
    background: #0f0f0f;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.value-icon img {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-description {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Team */
.team {
    padding: 4rem 0;
    background: #0a0a0a;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.member-role {
    font-size: 1rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-description {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Contact Information */
.contact-info-section {
    padding: 4rem 0;
    background: #0f0f0f;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-icon img {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-detail {
    font-size: 1.125rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-description {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.form-description {
    color: #a0a0a0;
    font-size: 1.125rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder {
    color: #808080;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #a0a0a0;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-label a {
    color: #00d4ff;
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #0f0f0f;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.question-title {
    font-size: 1.125rem;
    color: #ffffff;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #a0a0a0;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Thank You Page */
.thank-you-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon img {
    width: 80px;
    height: 80px;
}

.thank-you-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-description {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.contact-alternatives {
    margin-bottom: 3rem;
}

.alternatives-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.alternatives-description {
    color: #a0a0a0;
    margin-bottom: 2rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-icon img {
    width: 32px;
    height: 32px;
}

.method-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.method-detail {
    color: #00d4ff;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Privacy Policy */
.privacy-content {
    padding: 4rem 0;
    background: #0a0a0a;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.section-text {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.info-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.info-description {
    color: #a0a0a0;
    line-height: 1.6;
}

.usage-list,
.disclosure-list,
.rights-list {
    list-style: none;
    margin-top: 1rem;
}

.usage-list li,
.disclosure-list li,
.rights-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #a0a0a0;
}

.usage-list li::before,
.disclosure-list li::before,
.rights-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #a0a0a0;
}

.last-updated {
    text-align: center;
    color: #808080;
    font-style: italic;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .game-preview-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .game-info-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .info-types {
        grid-template-columns: 1fr;
    }
    
    .game-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .game-frame-wrapper {
        padding-bottom: 75%; /* 4:3 aspect ratio for mobile */
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-title {
        font-size: 2.5rem;
    }
}
