body {
    margin: 0;
    padding: 0;
    background: #000000;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 40px 20px;
}

/* Welcome Text */
.welcome-container {
    margin-bottom: 60px;
}

.paragraph_style {
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* Logo */
.logo-container {
    margin-bottom: 60px;
    width: 100%;
    max-width: 300px;
}

.csr-logo {
    width: 100%;
    height: auto;
    max-width: 300px;
    transform-origin: center center;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.play-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    width: 100%;
}

.play-button {
    padding: 10px 30px;
    color: #1E90FF;
    font-size: 18px;
    border: 2px solid #DC143C;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
    text-align: center;
    max-width: 80%;
}

.play-button:hover {
    background: rgba(30, 144, 255, 0.1);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    pointer-events: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .content {
        padding: 30px 15px;
    }
    
    .paragraph_style {
        font-size: 24px;
    }
    
    .play-button {
        font-size: 16px;
        padding: 8px 24px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 20px 10px;
    }
    
    .paragraph_style {
        font-size: 20px;
    }
    
    .play-button {
        font-size: 14px;
        padding: 8px 20px;
    }
}