/* Deep Oceanic Dark Mode Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: radial-gradient(circle at center, #131c24 0%, #080c10 100%);
    color: #e0e6ed;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Ambient Subtle Background Glow */
body::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #ffcc00;
    opacity: 0.03;
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

/* Main Glassmorphic Dashboard Container */
.dashboard {
    background: rgba(26, 36, 43, 0.65);
    border: 1px solid rgba(255, 204, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    max-width: 550px;
    width: 90%;
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease;
}
.dashboard:hover {
    border-color: rgba(255, 204, 0, 0.3);
}

/* Decorative Tactical Corner Brackets */
.dashboard::before, .dashboard::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #ffcc00;
    opacity: 0.4;
}
.dashboard::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.dashboard::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

/* Typography & Header Styling */
h1 {
    font-size: 26px;
    letter-spacing: 3px;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
    margin-bottom: 8px;
    font-weight: 800;
}
.subtitle {
    font-size: 12px;
    color: #7a8c9d;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

/* Button Grid Matrix */
.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}
@media (max-width: 400px) {
    .action-grid { grid-template-columns: 1fr; }
}

/* High-fidelity Tactical Buttons */
button {
    background: linear-gradient(135deg, #1f2d3a 0%, #15202b 100%);
    border: 1px solid rgba(0, 255, 204, 0.2);
    color: #00ffcc;
    padding: 16px 20px;
    font-size: 14px;
    font-family: inherit;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
button:hover {
    color: #1a1a1a;
    background: #00ffcc;
    border-color: #00ffcc;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
    transform: translateY(-2px);
}
button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 255, 204, 0.2);
}

/* Alternate Captain Option Styling Accent */
button.alt-btn {
    color: #ffcc00;
    border-color: rgba(255, 204, 0, 0.2);
}
button.alt-btn:hover {
    color: #1a1a1a;
    background: #ffcc00;
    border-color: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

/* Result Display Box */
.result-box {
    background: rgba(14, 22, 28, 0.8);
    border: 1px dashed rgba(122, 140, 157, 0.2);
    border-radius: 8px;
    padding: 25px 15px;
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#output {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    transition: opacity 0.15s ease;
}

/* Processing Loop Pulsing Text Effect */
.loading {
    color: #7a8c9d;
    font-size: 14px;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite ease-in-out;
    text-transform: uppercase;
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; color: #ffcc00; }
}
EOFcat << 'EOF' > /var/www/namethatpirate.com/public_html/style.css
/* Deep Oceanic Dark Mode Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: radial-gradient(circle at center, #131c24 0%, #080c10 100%);
    color: #e0e6ed;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Ambient Subtle Background Glow */
body::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #ffcc00;
    opacity: 0.03;
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

/* Main Glassmorphic Dashboard Container */
.dashboard {
    background: rgba(26, 36, 43, 0.65);
    border: 1px solid rgba(255, 204, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    max-width: 550px;
    width: 90%;
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease;
}
.dashboard:hover {
    border-color: rgba(255, 204, 0, 0.3);
}

/* Decorative Tactical Corner Brackets */
.dashboard::before, .dashboard::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #ffcc00;
    opacity: 0.4;
}
.dashboard::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.dashboard::after { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

/* Typography & Header Styling */
h1 {
    font-size: 26px;
    letter-spacing: 3px;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
    margin-bottom: 8px;
    font-weight: 800;
}
.subtitle {
    font-size: 12px;
    color: #7a8c9d;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

/* Button Grid Matrix */
.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}
@media (max-width: 400px) {
    .action-grid { grid-template-columns: 1fr; }
}

/* High-fidelity Tactical Buttons */
button {
    background: linear-gradient(135deg, #1f2d3a 0%, #15202b 100%);
    border: 1px solid rgba(0, 255, 204, 0.2);
    color: #00ffcc;
    padding: 16px 20px;
    font-size: 14px;
    font-family: inherit;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
button:hover {
    color: #1a1a1a;
    background: #00ffcc;
    border-color: #00ffcc;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
    transform: translateY(-2px);
}
button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 255, 204, 0.2);
}

/* Alternate Captain Option Styling Accent */
button.alt-btn {
    color: #ffcc00;
    border-color: rgba(255, 204, 0, 0.2);
}
button.alt-btn:hover {
    color: #1a1a1a;
    background: #ffcc00;
    border-color: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

/* Result Display Box */
.result-box {
    background: rgba(14, 22, 28, 0.8);
    border: 1px dashed rgba(122, 140, 157, 0.2);
    border-radius: 8px;
    padding: 25px 15px;
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#output {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
    transition: opacity 0.15s ease;
}

/* Processing Loop Pulsing Text Effect */
.loading {
    color: #7a8c9d;
    font-size: 14px;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite ease-in-out;
    text-transform: uppercase;
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; color: #ffcc00; }
}
