/* accent-oracle.css */
:root {
    --primary-color: #8891F3;
    --secondary-color: #11D1A7;
    --background-color: #13141B;
    --text-color: #FFFFFF;
}

.accent-oracle-body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    text-align: center;
    padding: 80px 0;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.accent-text {
    color: var(--primary-color);
}

.try-now-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.try-now-button:hover {
    transform: scale(1.05);
}

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

.feature {
    background: rgba(136, 145, 243, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

/* .iframe-container {
    margin: 20px 0; 
    border: 2px solid #8891F3; 
    padding: 10px;
    border-radius: 8px; 
}
 */

.iframe-container {
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    width: 100vw; 
    height: calc(100vh - 60px);
    margin: 30px 0; 
    box-sizing: border-box; 
}
/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
    }
}

iframe {
    width: 100%; 
    height: 100%; 
    border: none;
    max-width: 100%; 
    max-height: 100%; 
}

.news-reports {
    padding: 2rem;
    background: #f5f5f5;
    margin: 2rem 0;
}

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

.news-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.news-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.news-item p {
    color: #666;
    margin-bottom: 1rem;
}

.news-item a {
    color: #8891F3;
    text-decoration: none;
    font-weight: bold;
}

.news-item a:hover {
    text-decoration: underline;
}

/* Other Games Section Styles */
.other-games {
    padding: 60px 0;
    background: rgba(136, 145, 243, 0.05);
    border-radius: 20px;
    margin: 40px 0;
}

.other-games .description {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.game-item {
    background: rgba(17, 209, 167, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(136, 145, 243, 0.2);
}

.game-item__img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.game-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-item:hover .game-item__img img {
    transform: scale(1.05);
}

.game-item__info {
    padding: 20px;
}

.game-item__title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.game-item__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-item__play {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.game-item:hover .game-item__play {
    background: var(--secondary-color);
}

/* Responsive adjustments for Other Games */
@media (max-width: 768px) {
    .other-games {
        padding: 40px 0;
    }

    .other-games .description {
        font-size: 1.5rem;
        padding: 0 20px;
    }

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

    .game-item__img {
        height: 180px;
    }

    .game-item__title {
        font-size: 1.2rem;
    }
}

/* Animation for game items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.game-item:nth-child(1) {
    animation-delay: 0.1s;
}

.game-item:nth-child(2) {
    animation-delay: 0.3s;
}

.game-item:nth-child(3) {
    animation-delay: 0.5s;
}


.content-container {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
    font-family: Arial, sans-serif;
}

.content-container h1,
.content-container h2,
.content-container h3 {
    color: #263359;
}

.content-container a {
    color: #8891F3;
    text-decoration: none;
}

.content-container a:hover {
    text-decoration: underline;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin: 5px 0;
}

.amazon-products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.amazon-product {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.amazon-product img {
    width: 200px; 
    height: 200px; 
    object-fit: contain; 
    margin-bottom: 15px;
}

.amazon-product h3 {
    font-size: 1rem;
    line-height: 1.4;
    margin: 10px 0;
    color: #333;
    height: 2.8em; 
    overflow: hidden;
}
#amazon-products {
    background: var(--background-color);
    padding: 40px 20px;
    margin: 40px 0;
}

#amazon-products h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 2rem;
}
@media (max-width: 768px) {
    .amazon-products-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 10px;
    }
    
    .amazon-product img {
        width: 150px;
        height: 150px;
    }
    
    .amazon-product h3 {
        font-size: 0.9rem;
    }
}

.main-visual-section {
    width: 100%;
    margin: 40px 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.visual-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16 / 9;
}

.main-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease-in-out;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.6)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    border-radius: 16px;
    color: white;
}

.visual-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.visual-description {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.visual-container:hover .main-visual-image {
    transform: scale(1.02);
}


@media screen and (max-width: 1024px) {
    .visual-title {
        font-size: 2rem;
    }
    
    .visual-description {
        font-size: 1.1rem;
    }
    
    .visual-overlay {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .main-visual-section {
        margin: 20px 0;
    }
    
    .visual-title {
        font-size: 1.5rem;
    }
    
    .visual-description {
        font-size: 1rem;
    }
    
    .visual-overlay {
        padding: 20px;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-visual-section {
    animation: fadeIn 0.8s ease-out forwards;
}


.visual-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f0f0f0;
    border-radius: 16px;
    z-index: -1;
}

/*Apps */

/* Other Apps Section Styles */
.other-Apps {
    padding: 60px 0;
    background: rgba(136, 145, 243, 0.05);
    border-radius: 20px;
    margin: 40px 0;
}

.other-Apps .description {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.app-item {
    background: rgba(17, 209, 167, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.app-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(136, 145, 243, 0.2);
}

.app-item__img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.app-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.app-item:hover .app-item__img img {
    transform: scale(1.05);
}

.app-item__info {
    padding: 20px;
}

.app-item__title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.app-item__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-item__play {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.app-item:hover .app-item__play {
    background: var(--secondary-color);
}

/* Responsive adjustments for Other Apps */
@media (max-width: 768px) {
    .other-apps {
        padding: 40px 0;
    }

    .other-apps .description {
        font-size: 1.5rem;
        padding: 0 20px;
    }

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

    .app-item__img {
        height: 180px;
    }

    .app-item__title {
        font-size: 1.2rem;
    }
}

/* Animation for app items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.app-item:nth-child(1) {
    animation-delay: 0.1s;
}

.app-item:nth-child(2) {
    animation-delay: 0.3s;
}

.app-item:nth-child(3) {
    animation-delay: 0.5s;
}


/*gradio*/
.gradio-container {
    position: relative;
    width: 100%;
}

.fullscreen-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1001;
    padding: 10px 20px;
    background: #ff3b3b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold; 
    font-size: 16px; 
    text-transform: uppercase; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);

}

.fullscreen-toggle:hover {
    background: #ff0000;
    transform: scale(1.05); 
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); 
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fullscreen-toggle {
    animation: pulse 2s infinite; 
}

.gradio-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: white;
}

.gradio-container.fullscreen gradio-app {
    width: 100vw;
    height: 100vh;
}

.gradio-container.fullscreen .fullscreen-toggle {
    background: #4CAF50; 
}

.gradio-container.fullscreen .fullscreen-toggle:hover {
    background: #45a049;
}

.app-item__img {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 10px;
    left: 10px; 
    background: linear-gradient(45deg, #ff4757, #ff6b81);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    gap: 4px;
}


.popular-badge i {
    font-size: 10px;
    color: #ffeb3b;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


.popular-badge:hover {
    background: linear-gradient(45deg, #ff6b81, #ff8a9e);
    transform: scale(1.1);
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .popular-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .popular-badge i {
        font-size: 8px;
    }
}


.new-release-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #2196F3, #4CAF50);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.5px;
}


.new-release-badge i {
    font-size: 10px;
    color: #FFEB3B;
}


@keyframes glow {
    0% {
        box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
    }
    50% {
        box-shadow: 0 2px 15px rgba(33, 150, 243, 0.4);
    }
    100% {
        box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
    }
}

.new-release-badge {
    animation: glow 2s infinite;
}


.new-release-badge:hover {
    background: linear-gradient(45deg, #1976D2, #388E3C);
    transform: scale(1.05);
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .new-release-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .new-release-badge i {
        font-size: 8px;
    }
}